diff options
| author | Richard M. Stallman | 2004-10-27 17:46:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-10-27 17:46:33 +0000 |
| commit | b965722b347d5c2c545e06704b415975c3a679b7 (patch) | |
| tree | 0d89d33540380c48168571b05059dec14ca7d50d | |
| parent | d3d3d650eff1be4272aa06978a1e59c249e1e104 (diff) | |
| download | emacs-b965722b347d5c2c545e06704b415975c3a679b7.tar.gz emacs-b965722b347d5c2c545e06704b415975c3a679b7.zip | |
(apropos-macrop): Doc fix.
| -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." | |||
| 875 | 875 | ||
| 876 | 876 | ||
| 877 | (defun apropos-macrop (symbol) | 877 | (defun apropos-macrop (symbol) |
| 878 | "T if SYMBOL is a Lisp macro." | 878 | "Return t if SYMBOL is a Lisp macro." |
| 879 | (and (fboundp symbol) | 879 | (and (fboundp symbol) |
| 880 | (consp (setq symbol | 880 | (consp (setq symbol |
| 881 | (symbol-function symbol))) | 881 | (symbol-function symbol))) |