diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-10-27 17:46:33 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-10-27 17:46:33 +0000 |
commit | b965722b347d5c2c545e06704b415975c3a679b7 (patch) | |
tree | 0d89d33540380c48168571b05059dec14ca7d50d /lisp/apropos.el | |
parent | d3d3d650eff1be4272aa06978a1e59c249e1e104 (diff) | |
download | emacs-b965722b347d5c2c545e06704b415975c3a679b7.tar.gz |
(apropos-macrop): Doc fix.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index e5904e73b71..8bfaa3ad592 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -875,7 +875,7 @@ If non-nil TEXT is a string that will be printed as a heading." (defun apropos-macrop (symbol) - "T if SYMBOL is a Lisp macro." + "Return t if SYMBOL is a Lisp macro." (and (fboundp symbol) (consp (setq symbol (symbol-function symbol))) |