emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107398: Add new parameter :after-hoo


From: Alan Mackenzie
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107398: Add new parameter :after-hook to define-minor-mode. Use this in the
Date: Thu, 23 Feb 2012 18:51:22 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107398
committer: Alan Mackenzie <address@hidden>
branch nick: quickfixes
timestamp: Thu 2012-02-23 18:51:22 +0000
message:
  Add new parameter :after-hook to define-minor-mode.  Use this in the
  definition of font-lock-mode.
modified:
  doc/lispref/ChangeLog
  doc/lispref/modes.texi
  lisp/ChangeLog
  lisp/emacs-lisp/easy-mmode.el
  lisp/font-core.el
  lisp/font-lock.el
=== modified file 'doc/lispref/ChangeLog'
--- a/doc/lispref/ChangeLog     2012-02-21 13:24:48 +0000
+++ b/doc/lispref/ChangeLog     2012-02-23 18:51:22 +0000
@@ -1,3 +1,8 @@
+2012-02-23  Alan Mackenzie  <address@hidden>
+
+       * modes.texi (Defining Minor Modes): Document the new keyword
+       :after-hook.
+
 2012-02-21  Chong Yidong  <address@hidden>
 
        * files.texi (Files): Mention magic file names as arguments.

=== modified file 'doc/lispref/modes.texi'
--- a/doc/lispref/modes.texi    2012-02-19 05:54:33 +0000
+++ b/doc/lispref/modes.texi    2012-02-23 18:51:22 +0000
@@ -1594,15 +1594,20 @@
 @var{place} can also be a cons @code{(@var{get} . @var{set})},
 where @var{get} is an expression that returns the current state,
 and @var{set} is a function of one argument (a state) that sets it.
+
address@hidden :after-hook @var{after-hook}
+This defines a single lisp form which is evaluated after the mode hooks
+have run.  It should not be quoted.
 @end table
 
 Any other keyword arguments are passed directly to the
 @code{defcustom} generated for the variable @var{mode}.
 
-The command named @var{mode} first performs the standard actions such
-as setting the variable named @var{mode} and then executes the
address@hidden forms, if any.  It finishes by running the mode hook
-variable @address@hidden
+The command named @var{mode} first performs the standard actions such as
+setting the variable named @var{mode} and then executes the @var{body}
+forms, if any.  It then runs the mode hook variable
address@hidden@var{mode}-hook} and finishes by evaluating any form in
address@hidden:after-hook}.
 @end defmac
 
   The initial value must be @code{nil} except in cases where (1) the

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-02-23 15:41:12 +0000
+++ b/lisp/ChangeLog    2012-02-23 18:51:22 +0000
@@ -1,3 +1,15 @@
+2012-02-23  Alan Mackenzie  <address@hidden>
+
+       * emacs-lisp/easy-mmode.el (define-minor-mode): Add extra
+       parameter "after-hook:" to allow the expansion to run code after
+       the execution of the mode hooks.
+
+       * font-lock.el (font-lock-initial-fontify): New function extracted
+       from font-lock-mode-interal.
+
+       * font-core.el (font-lock-mode): call font-lock-initial-fontify in
+       :after-hook.
+
 2012-02-23  Stefan Monnier  <address@hidden>
 
        * minibuffer.el: Make sure cycling is reset upon edit with icomplete.el.

=== modified file 'lisp/emacs-lisp/easy-mmode.el'
--- a/lisp/emacs-lisp/easy-mmode.el     2012-02-07 08:26:54 +0000
+++ b/lisp/emacs-lisp/easy-mmode.el     2012-02-23 18:51:22 +0000
@@ -135,6 +135,8 @@
                the new state, and sets it.  If you specify a :variable,
                this function does not define a MODE variable (nor any of
                the terms used in :variable).
+:after-hook     A single lisp form which is evaluated after the mode hooks
+                have been run.  It should not be quoted.
 
 For example, you could write
   (define-minor-mode foo-mode \"If enabled, foo on you!\"
@@ -170,6 +172,7 @@
          (setter nil)            ;The function (if any) to set the mode var.
          (modefun mode)          ;The minor mode function name we're defining.
         (require t)
+        (after-hook nil)
         (hook (intern (concat mode-name "-hook")))
         (hook-on (intern (concat mode-name "-on-hook")))
         (hook-off (intern (concat mode-name "-off-hook")))
@@ -197,6 +200,7 @@
              (setq mode variable)
            (setq mode (car variable))
            (setq setter (cdr variable))))
+       (:after-hook (setq after-hook (pop body)))
        (t (push keyw extra-keywords) (push (pop body) extra-keywords))))
 
     (setq keymap-sym (if (and keymap (symbolp keymap)) keymap
@@ -275,7 +279,8 @@
                               (not (equal ,last-message
                                           (current-message))))
                    (message ,(format "%s %%sabled" pretty-name)
-                            (if ,mode "en" "dis"))))))
+                            (if ,mode "en" "dis")))))
+          ,@(when after-hook `(,after-hook)))
         (force-mode-line-update)
         ;; Return the new setting.
         ,mode)

=== modified file 'lisp/font-core.el'
--- a/lisp/font-core.el 2012-01-19 07:21:25 +0000
+++ b/lisp/font-core.el 2012-02-23 18:51:22 +0000
@@ -138,6 +138,7 @@
 your own function which is called when `font-lock-mode' is toggled via
 `font-lock-function'. "
   nil nil nil
+  :after-hook (if font-lock-mode (font-lock-initial-fontify))
   ;; Don't turn on Font Lock mode if we don't have a display (we're running a
   ;; batch job) or if the buffer is invisible (the name starts with a space).
   (when (or noninteractive (eq (aref (buffer-name) 0) ?\s))

=== modified file 'lisp/font-lock.el'
--- a/lisp/font-lock.el 2012-02-10 15:59:29 +0000
+++ b/lisp/font-lock.el 2012-02-23 18:51:22 +0000
@@ -629,21 +629,24 @@
   ;; Shut up the byte compiler.
   (defvar font-lock-face-attributes))  ; Obsolete but respected if set.
 
+(defun font-lock-initial-fontify ()
+  ;; The first fontification after turning the mode on.  This must
+  ;;  only be called after the mode hooks have been run.
+  (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size)))
+    (cond (font-lock-fontified
+          nil)
+         ((or (null max-size) (> max-size (buffer-size)))
+          (font-lock-fontify-buffer))
+         (font-lock-verbose
+          (message "Fontifying %s...buffer size greater than 
font-lock-maximum-size"
+                   (buffer-name))))))
+
 (defun font-lock-mode-internal (arg)
   ;; Turn on Font Lock mode.
   (when arg
     (add-hook 'after-change-functions 'font-lock-after-change-function t t)
     (font-lock-set-defaults)
-    (font-lock-turn-on-thing-lock)
-    ;; Fontify the buffer if we have to.
-    (let ((max-size (font-lock-value-in-major-mode font-lock-maximum-size)))
-      (cond (font-lock-fontified
-            nil)
-           ((or (null max-size) (> max-size (buffer-size)))
-            (font-lock-fontify-buffer))
-           (font-lock-verbose
-            (message "Fontifying %s...buffer size greater than 
font-lock-maximum-size"
-                     (buffer-name))))))
+    (font-lock-turn-on-thing-lock))
   ;; Turn off Font Lock mode.
   (unless font-lock-mode
     (remove-hook 'after-change-functions 'font-lock-after-change-function t)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]