emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117777: * lisp/emacs-lisp/easy-mmode.el (define-min


From: Christopher Schmidt
Subject: [Emacs-diffs] trunk r117777: * lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
Date: Fri, 29 Aug 2014 20:31:22 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117777
revision-id: address@hidden
parent: address@hidden
fixes bug: http://debbugs.gnu.org/18349
author: Michael Heerdegen <address@hidden>
committer: Christopher Schmidt <address@hidden>
branch nick: trunk
timestamp: Fri 2014-08-29 22:28:19 +0200
message:
  * lisp/emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
  name instead of variable name in hook docstring.  (Bug#18349)
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/emacs-lisp/easy-mmode.el  
easymmode.el-20091113204419-o5vbwnq5f7feedwu-1190
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-08-29 10:39:17 +0000
+++ b/lisp/ChangeLog    2014-08-29 20:28:19 +0000
@@ -1,3 +1,8 @@
+2014-08-29  Michael Heerdegen  <address@hidden>
+
+       * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
+       name instead of variable name in hook docstring.  (Bug#18349)
+
 2014-08-29  Martin Rudalics  <address@hidden>
 
        * window.el (display-buffer-at-bottom): Prefer bottom-left

=== modified file 'lisp/emacs-lisp/easy-mmode.el'
--- a/lisp/emacs-lisp/easy-mmode.el     2014-02-24 03:55:17 +0000
+++ b/lisp/emacs-lisp/easy-mmode.el     2014-08-29 20:28:19 +0000
@@ -300,7 +300,7 @@
          ,(format "Hook run after entering or leaving `%s'.
 No problems result if this variable is not bound.
 `add-hook' automatically binds it.  (This is true for all hook variables.)"
-                  mode))
+                 modefun))
 
        ;; Define the minor-mode keymap.
        ,(unless (symbolp keymap)       ;nil is also a symbol.


reply via email to

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