From: Richard M. Stallman Date: Mon, 29 Dec 2003 19:16:05 +0000 (+0000) Subject: (font-lock-after-change-function): Bind inhibit-quit. X-Git-Tag: ttn-vms-21-2-B4~8084 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=14e2791a5a0c78903d1cb841b04166198f0b523d;p=emacs.git (font-lock-after-change-function): Bind inhibit-quit. --- diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 1be0b724590..b76c818a517 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -1031,7 +1031,8 @@ what properties to clear before refontifying a region.") ;; 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.