diff options
author | Jim Blandy <jimb@redhat.com> | 1993-01-26 01:58:16 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-01-26 01:58:16 +0000 |
commit | 6056db491ff15bd710ba6fc54ebcd1ee642c850b (patch) | |
tree | c4d83e7727d0aa60563101cb828d12a5dc2e5685 /lisp/help.el | |
parent | d2cf404862d35167ac7245c10d3851070885b9b8 (diff) | |
download | emacs-6056db491ff15bd710ba6fc54ebcd1ee642c850b.tar.gz |
JimB's changes since January 18th
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index f7cdbf35414..d968aedb7a7 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -293,7 +293,7 @@ C-w print information on absence of warranty for GNU Emacs." (princ (cond ((stringp def) "a keyboard macro.") ((subrp def) (concat beg "built-in function.")) - ((compiled-function-p def) + ((byte-code-function-p def) (concat beg "compiled Lisp function.")) ((symbolp def) (format "alias for `%s'." def)) |