aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2004-10-27 17:46:33 +0000
committerRichard M. Stallman <[email protected]>2004-10-27 17:46:33 +0000
commitb965722b347d5c2c545e06704b415975c3a679b7 (patch)
tree0d89d33540380c48168571b05059dec14ca7d50d
parentd3d3d650eff1be4272aa06978a1e59c249e1e104 (diff)
(apropos-macrop): Doc fix.
-rw-r--r--lisp/apropos.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index e5904e73b7..8bfaa3ad59 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)))