Mercurial > emacs
changeset 53405:decc60fe49d5
(font-lock-after-change-function): Bind inhibit-quit.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 29 Dec 2003 19:16:05 +0000 |
parents | 5e98e2525d62 |
children | 45cc6f8abd8d |
files | lisp/font-lock.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/font-lock.el Mon Dec 29 19:15:23 2003 +0000 +++ b/lisp/font-lock.el Mon Dec 29 19:16:05 2003 +0000 @@ -1031,7 +1031,8 @@ ;; Called when any modification is made to buffer text. (defun font-lock-after-change-function (beg end old-len) - (let ((inhibit-point-motion-hooks t)) + (let ((inhibit-point-motion-hooks t) + (inhibit-quit t)) (save-excursion (save-match-data ;; Rescan between start of lines enclosing the region.