(perl-font-lock-special-syntactic-constructs):
Don't signal an error when bumping into EOB in tr, s, or y.
This commit is contained in:
parent
29a483ace4
commit
7a9547ca15
2 changed files with 16 additions and 11 deletions
|
@ -273,8 +273,8 @@ The expansion is entirely correct because it uses the C preprocessor."
|
|||
;; (or some similar separator), or by one of the special keywords
|
||||
;; corresponding to builtin functions that can take their first arg
|
||||
;; without parentheses. Of course, that presume we're looking at the
|
||||
;; *opening* slash. We can mis-match the closing ones, because they are
|
||||
;; treated separately later in
|
||||
;; *opening* slash. We can afford to mis-match the closing ones
|
||||
;; here, because they will be re-treated separately later in
|
||||
;; perl-font-lock-special-syntactic-constructs.
|
||||
(,(concat "\\(?:\\(?:\\(?:^\\|[^$@&%[:word:]]\\)"
|
||||
(regexp-opt '("split" "if" "unless" "until" "while" "split"
|
||||
|
@ -381,13 +381,14 @@ The expansion is entirely correct because it uses the C preprocessor."
|
|||
'font-lock-multiline t)
|
||||
;;
|
||||
(unless
|
||||
(save-excursion
|
||||
(with-syntax-table
|
||||
(perl-quote-syntax-table (char-after))
|
||||
(forward-sexp 1))
|
||||
(put-text-property pos (line-end-position)
|
||||
'jit-lock-defer-multiline t)
|
||||
(looking-at "\\s-*\\sw*e"))
|
||||
(or (eobp)
|
||||
(save-excursion
|
||||
(with-syntax-table
|
||||
(perl-quote-syntax-table (char-after))
|
||||
(forward-sexp 1))
|
||||
(put-text-property pos (line-end-position)
|
||||
jit-lock-defer-multiline t)
|
||||
(looking-at "\\s-*\\sw*e")))
|
||||
(put-text-property (point) (1+ (point))
|
||||
'syntax-table
|
||||
(if (assoc (char-after)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue