summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorErik Charlebois <erikcharlebois@gmail.com>2013-04-22 10:11:37 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2013-04-22 10:11:37 -0400
commit70203c2ec17efdb68b0873e4a62e2862a347e095 (patch)
treedf1b89a454e4aeabf4463b2a1bd0df1d94b9c4bc /lisp/emacs-lisp
parent8c1f2bb0fa5eec3f052f81082ccde733e337eb40 (diff)
downloademacs-70203c2ec17efdb68b0873e4a62e2862a347e095.tar.gz
emacs-70203c2ec17efdb68b0873e4a62e2862a347e095.tar.bz2
emacs-70203c2ec17efdb68b0873e4a62e2862a347e095.zip
* lisp/emacs-lisp/syntax.el (syntax-propertize-multiline):
Use `syntax-multiline' text property consistently instead of `font-lock-multiline'.. Fixes: debbugs:14237
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/syntax.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el
index bf2c8308bb5..0a4758a9ccd 100644
--- a/lisp/emacs-lisp/syntax.el
+++ b/lisp/emacs-lisp/syntax.el
@@ -99,7 +99,7 @@ Put first the functions more likely to cause a change and cheaper to compute.")
(setq beg (or (previous-single-property-change beg 'syntax-multiline)
(point-min))))
;;
- (when (get-text-property end 'font-lock-multiline)
+ (when (get-text-property end 'syntax-multiline)
(setq end (or (text-property-any end (point-max)
'syntax-multiline nil)
(point-max))))