diff options
author | Glenn Morris <rgm@gnu.org> | 2009-07-22 02:45:34 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-07-22 02:45:34 +0000 |
commit | cb711556008291dc0d1425b8f0f0837b37ae8368 (patch) | |
tree | 138d9bfbc14797190b207cdad12d43dcbbf67c82 /lisp/emacs-lisp/advice.el | |
parent | fd413a376573cd0992303019d4d59ccc6336dc9c (diff) | |
download | emacs-cb711556008291dc0d1425b8f0f0837b37ae8368.tar.gz |
Remove leading * from defcustom docs.
Diffstat (limited to 'lisp/emacs-lisp/advice.el')
-rw-r--r-- | lisp/emacs-lisp/advice.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/advice.el b/lisp/emacs-lisp/advice.el index fa5d57a854a..f9f80cdcbb6 100644 --- a/lisp/emacs-lisp/advice.el +++ b/lisp/emacs-lisp/advice.el @@ -1834,7 +1834,7 @@ ;;;###autoload (defcustom ad-redefinition-action 'warn - "*Defines what to do with redefinitions during Advice de/activation. + "Defines what to do with redefinitions during Advice de/activation. Redefinition occurs if a previously activated function that already has an original definition associated with it gets redefined and then de/activated. In such a case we can either accept the current definition as the new @@ -1849,7 +1849,7 @@ interpreted as `error'." ;;;###autoload (defcustom ad-default-compilation-action 'maybe - "*Defines whether to compile advised definitions during activation. + "Defines whether to compile advised definitions during activation. A value of `always' will result in unconditional compilation, `never' will always avoid compilation, `maybe' will compile if the byte-compiler is already loaded, and `like-original' will compile if the original definition of the |