X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/ae940284fa77a6928f5162b7de859e67bdc7506c..a1d23eb50565fe149ef2daf4c8404029a9ecaa74:/lisp/jit-lock.el diff --git a/lisp/jit-lock.el b/lisp/jit-lock.el index 384771e4f2..7be5df72c8 100644 --- a/lisp/jit-lock.el +++ b/lisp/jit-lock.el @@ -1,10 +1,10 @@ ;;; jit-lock.el --- just-in-time fontification -;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. +;; Copyright (C) 1998, 2000-2013 Free Software Foundation, Inc. ;; Author: Gerd Moellmann ;; Keywords: faces files +;; Package: emacs ;; This file is part of GNU Emacs. @@ -29,33 +29,13 @@ (eval-when-compile - (require 'cl) - - (defmacro with-buffer-unmodified (&rest body) - "Eval BODY, preserving the current buffer's modified state." - (declare (debug t)) - (let ((modified (make-symbol "modified"))) - `(let ((,modified (buffer-modified-p))) - (unwind-protect - (progn ,@body) - (unless ,modified - (restore-buffer-modified-p nil)))))) - (defmacro with-buffer-prepared-for-jit-lock (&rest body) "Execute BODY in current buffer, overriding several variables. Preserves the `buffer-modified-p' state of the current buffer." (declare (debug t)) - `(with-buffer-unmodified - (let ((buffer-undo-list t) - (inhibit-read-only t) - (inhibit-point-motion-hooks t) - (inhibit-modification-hooks t) - deactivate-mark - buffer-file-name - buffer-file-truename) - ,@body)))) - - + `(let ((inhibit-point-motion-hooks t)) + (with-silent-modifications + ,@body)))) ;;; Customization. @@ -414,7 +394,7 @@ Defaults to the whole buffer. END can be out of bounds." ;;; Stealth fontification. (defsubst jit-lock-stealth-chunk-start (around) - "Return the start of the next chunk to fontify around position AROUND.. + "Return the start of the next chunk to fontify around position AROUND. Value is nil if there is nothing more to fontify." (if (zerop (buffer-size)) nil @@ -608,5 +588,4 @@ will take place when text is fontified stealthily." (provide 'jit-lock) -;; arch-tag: 56b5de6e-f581-453b-bb97-49c39372ff9e ;;; jit-lock.el ends here