aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1998-12-04 11:54:56 +0000
committerDave Love1998-12-04 11:54:56 +0000
commit213f4eae7b91112f96ac7f4a0c297f51dc735a3b (patch)
treeb432ecd7dd6e6f26a93f09acda5bad9b18c3f982
parentc3161ec38280820d17920718a2c70ffccf3187e8 (diff)
downloademacs-213f4eae7b91112f96ac7f4a0c297f51dc735a3b.tar.gz
emacs-213f4eae7b91112f96ac7f4a0c297f51dc735a3b.zip
(describe-function-1): Fix description for alias.
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 5220f21a20c..1347fdf1abf 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -591,7 +591,7 @@ C-w Display information on absence of warranty for GNU Emacs."
591 ((symbolp def) 591 ((symbolp def)
592 (while (symbolp (symbol-function def)) 592 (while (symbolp (symbol-function def))
593 (setq def (symbol-function def))) 593 (setq def (symbol-function def)))
594 (format "alias for `%s'" def)) 594 (format "an alias for `%s'" def))
595 ((eq (car-safe def) 'lambda) 595 ((eq (car-safe def) 'lambda)
596 (concat beg "Lisp function")) 596 (concat beg "Lisp function"))
597 ((eq (car-safe def) 'macro) 597 ((eq (car-safe def) 'macro)