From 9e16c3b44bcf407678563f0bd679c0887ec3011c Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Thu, 14 Feb 2013 09:16:47 -0800 Subject: [PATCH] * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix re setf. --- lisp/ChangeLog | 4 ++++ lisp/emacs-lisp/easy-mmode.el | 15 ++++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5bd02f933de..4a328a749bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2013-02-14 Glenn Morris + + * emacs-lisp/easy-mmode.el (define-minor-mode): Doc fix. + 2013-02-14 Stefan Monnier * net/goto-addr.el (goto-address-fontify): Add start and end args. diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 9173d148c6a..166c093f37b 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -132,13 +132,14 @@ BODY contains code to execute each time the mode is enabled or disabled. :require SYM Same as in `defcustom'. :variable PLACE The location to use instead of the variable MODE to store the state of the mode. This can be simply a different - named variable, or more generally anything that can be used - with the CL macro `setf'. PLACE can also be of the form - \(GET . SET), where GET is an expression that returns the - current state, and SET is a function that takes one argument, - 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). + named variable, or a generalized variable. + PLACE can also be of the form \(GET . SET), where GET is + an expression that returns the current state, and SET is + a function that takes one argument, 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. -- 2.11.4.GIT