summaryrefslogtreecommitdiff
path: root/lisp/apropos.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2004-10-27 17:46:33 +0000
committerRichard M. Stallman <rms@gnu.org>2004-10-27 17:46:33 +0000
commita338c1c510c827140f2cd75a1c745e9aa0df2dc5 (patch)
tree5bc4eddeed71ad3534d2f3d884eaf4144844adaa /lisp/apropos.el
parente7c83cdf0daecb9b8b0cef8b91de607b41a35f45 (diff)
downloademacs-a338c1c510c827140f2cd75a1c745e9aa0df2dc5.tar.gz
(apropos-macrop): Doc fix.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r--lisp/apropos.el2
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)))