aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>1998-12-04 11:54:56 +0000
committerDave Love <[email protected]>1998-12-04 11:54:56 +0000
commit213f4eae7b91112f96ac7f4a0c297f51dc735a3b (patch)
treeb432ecd7dd6e6f26a93f09acda5bad9b18c3f982
parentc3161ec38280820d17920718a2c70ffccf3187e8 (diff)
(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 5220f21a20..1347fdf1ab 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -591,7 +591,7 @@ C-w Display information on absence of warranty for GNU Emacs."
((symbolp def)
(while (symbolp (symbol-function def))
(setq def (symbol-function def)))
- (format "alias for `%s'" def))
+ (format "an alias for `%s'" def))
((eq (car-safe def) 'lambda)
(concat beg "Lisp function"))
((eq (car-safe def) 'macro)