# HG changeset patch # User Dave Love # Date 912772496 0 # Node ID 19e467700712fcaf0e5eb6341d7cdadfa1ee778c # Parent efa2dd07025637c5337150a5e6ac737115ede4d6 (describe-function-1): Fix description for alias. diff -r efa2dd070256 -r 19e467700712 lisp/help.el --- a/lisp/help.el Fri Dec 04 09:50:31 1998 +0000 +++ b/lisp/help.el Fri Dec 04 11:54:56 1998 +0000 @@ -591,7 +591,7 @@ ((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)