]> code.delx.au - gnu-emacs/blobdiff - lisp/jit-lock.el
(mac-charset-info-alist, mac-services-selection, mac-system-script-code):
[gnu-emacs] / lisp / jit-lock.el
index 93cbe4fe72eb3caf0d729e251a7b41d9d700a5ce..2f8fcba91d1f2b689ae56ae294fa0a3400c36682 100644 (file)
@@ -1,6 +1,7 @@
 ;;; jit-lock.el --- just-in-time fontification
 
-;; Copyright (C) 1998, 2000, 2001, 2004 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004,
+;;   2005 Free Software Foundation, Inc.
 
 ;; Author: Gerd Moellmann <gerd@gnu.org>
 ;; Keywords: faces files
@@ -19,8 +20,8 @@
 
 ;; You should have received a copy of the GNU General Public License
 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-;; Boston, MA 02111-1307, USA.
+;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+;; Boston, MA 02110-1301, USA.
 
 ;;; Commentary:
 
@@ -32,6 +33,7 @@
 (eval-when-compile
   (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
@@ -42,6 +44,7 @@
   (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)
@@ -58,7 +61,6 @@ Preserves the `buffer-modified-p' state of the current buffer."
 
 (defgroup jit-lock nil
   "Font Lock support mode to fontify just-in-time."
-  :link '(custom-manual "(emacs)Support Modes")
   :version "21.1"
   :group 'font-lock)
 
@@ -68,7 +70,7 @@ Preserves the `buffer-modified-p' state of the current buffer."
   :group 'jit-lock)
 
 
-(defcustom jit-lock-stealth-time 3
+(defcustom jit-lock-stealth-time 16
   "*Time in seconds to wait before beginning stealth fontification.
 Stealth fontification occurs if there is no input within this time.
 If nil, stealth fontification is never performed.
@@ -79,7 +81,7 @@ The value of this variable is used when JIT Lock mode is turned on."
   :group 'jit-lock)
 
 
-(defcustom jit-lock-stealth-nice 0.125
+(defcustom jit-lock-stealth-nice 0.5
   "*Time in seconds to pause between chunks of stealth fontification.
 Each iteration of stealth fontification is separated by this amount of time,
 thus reducing the demand that stealth fontification makes on the system.
@@ -115,15 +117,16 @@ See also `jit-lock-stealth-nice'."
   :group 'jit-lock)
 
 
-(defcustom jit-lock-defer-contextually 'syntax-driven
-  "*If non-nil, means deferred fontification should be syntactically true.
-If nil, means deferred fontification occurs only on those lines modified.  This
+(defvaralias 'jit-lock-defer-contextually 'jit-lock-contextually)
+(defcustom jit-lock-contextually 'syntax-driven
+  "*If non-nil, means fontification should be syntactically true.
+If nil, means fontification occurs only on those lines modified.  This
 means where modification on a line causes syntactic change on subsequent lines,
 those subsequent lines are not refontified to reflect their new context.
-If t, means deferred fontification occurs on those lines modified and all
+If t, means fontification occurs on those lines modified and all
 subsequent lines.  This means those subsequent lines are refontified to reflect
-their new syntactic context, either immediately or when scrolling into them.
-If any other value, e.g., `syntax-driven', means deferred syntactically true
+their new syntactic context, after `jit-lock-context-time' seconds.
+If any other value, e.g., `syntax-driven', means syntactically true
 fontification occurs only if syntactic fontification is performed using the
 buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.
 
@@ -133,6 +136,11 @@ The value of this variable is used when JIT Lock mode is turned on."
                 (other :tag "syntax-driven" syntax-driven))
   :group 'jit-lock)
 
+(defcustom jit-lock-context-time 0.5
+  "Idle time after which text is contextually refontified, if applicable."
+  :type '(number :tag "seconds")
+  :group 'jit-lock)
+
 (defcustom jit-lock-defer-time nil ;; 0.25
   "Idle time after which deferred fontification should take place.
 If nil, fontification is not deferred."
@@ -159,7 +167,8 @@ If nil, contextual fontification is disabled.")
 
 (defvar jit-lock-stealth-timer nil
   "Timer for stealth fontification in Just-in-time Lock mode.")
-
+(defvar jit-lock-context-timer nil
+  "Timer for context fontification in Just-in-time Lock mode.")
 (defvar jit-lock-defer-timer nil
   "Timer for deferred fontification in Just-in-time Lock mode.")
 
@@ -187,9 +196,9 @@ following ways:
   been idle for `jit-lock-stealth-time' seconds, while Emacs remains idle.
   This is useful if any buffer has any deferred fontification.
 
-- Deferred context fontification if `jit-lock-defer-contextually' is
+- Deferred context fontification if `jit-lock-contextually' is
   non-nil.  This means fontification updates the buffer corresponding to
-  true syntactic context, after `jit-lock-stealth-time' seconds of Emacs
+  true syntactic context, after `jit-lock-context-time' seconds of Emacs
   idle time, while Emacs remains idle.  Otherwise, fontification occurs
   on modified lines only, and subsequent lines can remain fontified
   corresponding to previous syntactic contexts.  This is useful where
@@ -219,7 +228,11 @@ the variable `jit-lock-stealth-nice'."
                                      'jit-lock-deferred-fontify)))
 
         ;; Initialize contextual fontification if requested.
-        (when (eq jit-lock-defer-contextually t)
+        (when (eq jit-lock-contextually t)
+          (unless jit-lock-context-timer
+            (setq jit-lock-context-timer
+                  (run-with-idle-timer jit-lock-context-time t
+                                       'jit-lock-context-fontify)))
           (setq jit-lock-context-unfontify-pos
                 (or jit-lock-context-unfontify-pos (point-max))))
 
@@ -230,7 +243,8 @@ the variable `jit-lock-stealth-nice'."
        ;; Turn Just-in-time Lock mode off.
        (t
         ;; Cancel our idle timers.
-        (when (and (or jit-lock-stealth-timer jit-lock-defer-timer)
+        (when (and (or jit-lock-stealth-timer jit-lock-defer-timer
+                       jit-lock-context-timer)
                    ;; Only if there's no other buffer using them.
                    (not (catch 'found
                           (dolist (buf (buffer-list))
@@ -239,6 +253,9 @@ the variable `jit-lock-stealth-nice'."
           (when jit-lock-stealth-timer
             (cancel-timer jit-lock-stealth-timer)
             (setq jit-lock-stealth-timer nil))
+          (when jit-lock-context-timer
+            (cancel-timer jit-lock-context-timer)
+            (setq jit-lock-context-timer nil))
           (when jit-lock-defer-timer
             (cancel-timer jit-lock-defer-timer)
             (setq jit-lock-defer-timer nil)))
@@ -254,8 +271,8 @@ FUN will be called with two arguments START and END indicating the region
 that needs to be (re)fontified.
 If non-nil, CONTEXTUAL means that a contextual fontification would be useful."
   (add-hook 'jit-lock-functions fun nil t)
-  (when (and contextual jit-lock-defer-contextually)
-    (set (make-local-variable 'jit-lock-defer-contextually) t))
+  (when (and contextual jit-lock-contextually)
+    (set (make-local-variable 'jit-lock-contextually) t))
   (jit-lock-mode t))
 
 (defun jit-lock-unregister (fun)
@@ -282,7 +299,7 @@ Only applies to the current buffer."
   "Fontify current buffer starting at position START.
 This function is added to `fontification-functions' when `jit-lock-mode'
 is active."
-  (when jit-lock-mode
+  (when (and jit-lock-mode (not (memory-full-p)))
     (if (null jit-lock-defer-time)
        ;; No deferral.
        (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
@@ -336,7 +353,13 @@ Defaults to the whole buffer.  END can be out of bounds."
           ;; We mark it first, to make sure that we don't indefinitely
           ;; re-execute this fontification if an error occurs.
           (put-text-property start next 'fontified t)
-          (run-hook-with-args 'jit-lock-functions start next)
+          (condition-case err
+              (run-hook-with-args 'jit-lock-functions start next)
+            ;; If the user quits (which shouldn't happen in normal on-the-fly
+            ;; jit-locking), make sure the fontification will be performed
+            ;; before displaying the block again.
+            (quit (put-text-property start next 'fontified nil)
+                  (funcall 'signal (car err) (cdr err))))
 
           ;; Find the start of the next chunk, if any.
           (setq start (text-property-any next end 'fontified nil))))))))
@@ -394,13 +417,12 @@ This functions is called after Emacs has been idle for
   (unless (or executing-kbd-macro
              (window-minibuffer-p (selected-window)))
     (let ((buffers (buffer-list))
+         (outer-buffer (current-buffer))
          minibuffer-auto-raise
          message-log-max)
-      (while (and buffers (not (input-pending-p)))
-       (let ((buffer (car buffers)))
-         (setq buffers (cdr buffers))
-
-         (with-current-buffer buffer
+      (with-local-quit
+       (while (and buffers (not (input-pending-p)))
+         (with-current-buffer (pop buffers)
            (when jit-lock-mode
              ;; This is funny.  Calling sit-for with 3rd arg non-nil
              ;; so that it doesn't redisplay, internally calls
@@ -420,28 +442,6 @@ This functions is called after Emacs has been idle for
                                     (concat "JIT stealth lock "
                                             (buffer-name)))
 
-               ;; Perform deferred unfontification, if any.
-               (when jit-lock-context-unfontify-pos
-                 (save-restriction
-                   (widen)
-                   (when (and (>= jit-lock-context-unfontify-pos (point-min))
-                              (< jit-lock-context-unfontify-pos (point-max)))
-                     ;; If we're in text that matches a complex multi-line
-                     ;; font-lock pattern, make sure the whole text will be
-                     ;; redisplayed eventually.
-                     (when (get-text-property jit-lock-context-unfontify-pos
-                                              'jit-lock-defer-multiline)
-                       (setq jit-lock-context-unfontify-pos
-                             (or (previous-single-property-change
-                                  jit-lock-context-unfontify-pos
-                                  'jit-lock-defer-multiline)
-                                 (point-min))))
-                     (with-buffer-prepared-for-jit-lock
-                       (remove-text-properties
-                        jit-lock-context-unfontify-pos (point-max)
-                        '(fontified nil jit-lock-defer-multiline nil)))
-                     (setq jit-lock-context-unfontify-pos (point-max)))))
-
                ;; In the following code, the `sit-for' calls cause a
                ;; redisplay, so it's required that the
                ;; buffer-modified flag of a buffer that is displayed
@@ -452,7 +452,10 @@ This functions is called after Emacs has been idle for
                      (point (point-min)))
                  (while (and (setq start
                                    (jit-lock-stealth-chunk-start point))
-                             (sit-for nice))
+                             ;; In case sit-for runs any timers,
+                             ;; give them the expected current buffer.
+                             (with-current-buffer outer-buffer
+                               (sit-for nice)))
 
                    ;; fontify a block.
                    (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
@@ -464,7 +467,10 @@ This functions is called after Emacs has been idle for
                    ;; Wait a little if load is too high.
                    (when (and jit-lock-stealth-load
                               (> (car (load-average)) jit-lock-stealth-load))
-                     (sit-for (or jit-lock-stealth-time 30)))))))))))))
+                     ;; In case sit-for runs any timers,
+                     ;; give them the expected current buffer.
+                     (with-current-buffer outer-buffer
+                       (sit-for (or jit-lock-stealth-time 30))))))))))))))
 
 
 \f
@@ -497,6 +503,36 @@ This functions is called after Emacs has been idle for
       )))
 
 
+(defun jit-lock-context-fontify ()
+  "Refresh fontification to take new context into account."
+  (dolist (buffer (buffer-list))
+    (with-current-buffer buffer
+      (when jit-lock-context-unfontify-pos
+       ;; (message "Jit-Context %s" (buffer-name))
+       (save-restriction
+         (widen)
+         (when (and (>= jit-lock-context-unfontify-pos (point-min))
+                    (< jit-lock-context-unfontify-pos (point-max)))
+           ;; If we're in text that matches a complex multi-line
+           ;; font-lock pattern, make sure the whole text will be
+           ;; redisplayed eventually.
+           ;; Despite its name, we treat jit-lock-defer-multiline here
+           ;; rather than in jit-lock-defer since it has to do with multiple
+           ;; lines, i.e. with context.
+           (when (get-text-property jit-lock-context-unfontify-pos
+                                    'jit-lock-defer-multiline)
+             (setq jit-lock-context-unfontify-pos
+                   (or (previous-single-property-change
+                        jit-lock-context-unfontify-pos
+                        'jit-lock-defer-multiline)
+                       (point-min))))
+           (with-buffer-prepared-for-jit-lock
+            ;; Force contextual refontification.
+            (remove-text-properties
+             jit-lock-context-unfontify-pos (point-max)
+             '(fontified nil jit-lock-defer-multiline nil)))
+           (setq jit-lock-context-unfontify-pos (point-max))))))))
+
 (defun jit-lock-after-change (start end old-len)
   "Mark the rest of the buffer as not fontified after a change.
 Installed on `after-change-functions'.
@@ -505,7 +541,7 @@ is the pre-change length.
 This function ensures that lines following the change will be refontified
 in case the syntax of those lines has changed.  Refontification
 will take place when text is fontified stealthily."
-  (when jit-lock-mode
+  (when (and jit-lock-mode (not (memory-full-p)))
     (save-excursion
       (with-buffer-prepared-for-jit-lock
        ;; It's important that the `fontified' property be set from the