From 7a9547ca154a37fdb68e953adecbd87b4953b65c Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 30 Nov 2009 13:43:51 +0000 Subject: [PATCH] (perl-font-lock-special-syntactic-constructs): Don't signal an error when bumping into EOB in tr, s, or y. --- lisp/ChangeLog | 8 ++++++-- lisp/progmodes/perl-mode.el | 19 ++++++++++--------- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index af32716c2fc..e35cdf99fa2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-11-30 Stefan Monnier + + * progmodes/perl-mode.el (perl-font-lock-special-syntactic-constructs): + Don't signal an error when bumping into EOB in tr, s, or y. + 2009-11-29 Juri Linkov * startup.el (fancy-about-text): Fix wording of Guided Tour. @@ -10,8 +15,7 @@ * ediff-util.el (ediff-minibuffer-with-setup-hook): New compatibility macro. - (ediff-read-file-name): Use it instead of - `minibuffer-with-setup-hook'. + (ediff-read-file-name): Use it instead of `minibuffer-with-setup-hook'. 2009-11-29 Juri Linkov diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index 2dedda4fcfa..eaa9bbc6af1 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -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) -- 2.39.5