From 5237d741a8744f6be1bcbf28f551fc222e6d75ae Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 30 Nov 2009 22:51:34 +0000 Subject: [PATCH] Fix references to jit-lock properties. * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): Refer to jit-lock-defer-multiline, not jit-lock-multiline. (perl-font-lock-special-syntactic-constructs): Quote jit-lock-defer-multiline property. --- lisp/ChangeLog | 18 +++++++++++++----- lisp/progmodes/perl-mode.el | 4 ++-- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index dfd2a3687f3..66710ac75ec 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,11 @@ +2009-11-30 Juanma Barranquero + + Fix references to jit-lock properties. + * progmodes/perl-mode.el (perl-font-lock-syntactic-keywords): + Refer to jit-lock-defer-multiline, not jit-lock-multiline. + (perl-font-lock-special-syntactic-constructs): + Quote jit-lock-defer-multiline property. + 2009-11-30 Dan Nicolaescu * vc-git.el (vc-git-registered): Call vc-git-root only once. @@ -972,13 +980,13 @@ * calc/calc-menu.el (calc-arithmetic-menu): Remove `calc-symclip'. * calc/calc-map.el (calc-get-operator, calc-b-oper-keys): - * calc/calc-help.el (calc-b-prefix-help): Remove references to + * calc/calc-help.el (calc-b-prefix-help): Remove references to `calc-symclip'. 2009-11-16 Kevin Ryde * textmodes/flyspell.el (sgml-mode-flyspell-verify): - Use `sgml-lexical-context' instead of own parse for tag (Bug#4511). + Use `sgml-lexical-context' instead of own parse for tag (Bug#4511). * emacs-lisp/lisp-mnt.el (lm-keywords): Allow multi-line keywords. (lm-keywords-list): Allow comma-only separator like "foo,bar". @@ -988,7 +996,7 @@ 2009-11-16 Dan Nicolaescu - * vc.el (vc-log-show-limit): Default to 2000. + * vc.el (vc-log-show-limit): Default to 2000. (vc-print-log-internal): Insert buttons to request more entries when limiting the output. @@ -1050,7 +1058,7 @@ `calc-symclip'. (calc-modes-menu): Add item for twos complement mode. - * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'. + * calc/calc-help.el (calc-b-prefix-help): Add help for `calc-symclip'. 2009-11-15 Chong Yidong @@ -1271,7 +1279,7 @@ * textmodes/artist.el (artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu' if we cannot popup - menus. Bug noticed by Eli Zaretskii . + menus. Bug noticed by Eli Zaretskii . (artist-compute-up-event-key): New function. (artist-mouse-choose-operation, artist-down-mouse-1): Call it. diff --git a/lisp/progmodes/perl-mode.el b/lisp/progmodes/perl-mode.el index eaa9bbc6af1..563bd10d39d 100644 --- a/lisp/progmodes/perl-mode.el +++ b/lisp/progmodes/perl-mode.el @@ -287,7 +287,7 @@ The expansion is entirely correct because it uses the C preprocessor." ;; the syntax-table before point, but better than nothing. (forward-comment (- (point-max))) (put-text-property (point) (match-end 2) - 'jit-lock-multiline t) + 'jit-lock-defer-multiline t) (not (memq (char-before) '(?? ?: ?. ?, ?\; ?= ?! ?~ ?\( ?\[))))) nil ;; A division sign instead of a regexp-match. @@ -387,7 +387,7 @@ The expansion is entirely correct because it uses the C preprocessor." (perl-quote-syntax-table (char-after)) (forward-sexp 1)) (put-text-property pos (line-end-position) - jit-lock-defer-multiline t) + 'jit-lock-defer-multiline t) (looking-at "\\s-*\\sw*e"))) (put-text-property (point) (1+ (point)) 'syntax-table -- 2.39.5