diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-05-01 20:47:50 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-05-01 20:47:50 +0300 |
commit | b1cb82edff21abfefd68af18370dddfd8cc1fec0 (patch) | |
tree | fd8d8a1e1d99af024b52158a471457fc796238bc /lisp/emacs-lisp/syntax.el | |
parent | 10f81f3ac90f98160f611787e20dcad96bb500e9 (diff) | |
parent | 2640d52e4e7873e41b0f0f1144177f84c345917e (diff) | |
download | emacs-b1cb82edff21abfefd68af18370dddfd8cc1fec0.tar.gz emacs-b1cb82edff21abfefd68af18370dddfd8cc1fec0.tar.bz2 emacs-b1cb82edff21abfefd68af18370dddfd8cc1fec0.zip |
Merge from trunk.
Diffstat (limited to 'lisp/emacs-lisp/syntax.el')
-rw-r--r-- | lisp/emacs-lisp/syntax.el | 2 |
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)))) |