mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 06:20:43 -08:00
* lisp/emacs-lisp/syntax.el (syntax-propertize-multiline):
Use `syntax-multiline' text property consistently instead of `font-lock-multiline'.. Fixes: debbugs:14237
This commit is contained in:
parent
8c1f2bb0fa
commit
70203c2ec1
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2013-04-22 Erik Charlebois <erikcharlebois@gmail.com>
|
||||||
|
|
||||||
|
* emacs-lisp/syntax.el (syntax-propertize-multiline):
|
||||||
|
Use `syntax-multiline' text property consistently instead of
|
||||||
|
`font-lock-multiline'. (bug#14237).
|
||||||
|
|
||||||
2013-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
|
2013-04-06 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
|
* eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
|
||||||
|
|
|
||||||
|
|
@ -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)
|
(setq beg (or (previous-single-property-change beg 'syntax-multiline)
|
||||||
(point-min))))
|
(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)
|
(setq end (or (text-property-any end (point-max)
|
||||||
'syntax-multiline nil)
|
'syntax-multiline nil)
|
||||||
(point-max))))
|
(point-max))))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue