Mercurial > hg > xemacs-beta
diff lisp/apropos.el @ 272:c5d627a313b1 r21-0b34
Import from CVS: tag r21-0b34
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:28:48 +0200 |
parents | d44af0c54775 |
children | 7df0dd720c89 |
line wrap: on
line diff
--- a/lisp/apropos.el Mon Aug 13 10:27:41 2007 +0200 +++ b/lisp/apropos.el Mon Aug 13 10:28:48 2007 +0200 @@ -70,14 +70,14 @@ (defvar apropos-symbol-face (if (boundp 'font-lock-keyword-face) font-lock-keyword-face 'bold) - "*Face for symbol name in apropos output or `nil'. + "*Face for symbol name in apropos output or `nil'. This looks good, but slows down the commands several times.") ;; XEmacs addition (defvar apropos-keybinding-face (if (boundp 'font-lock-string-face) font-lock-string-face 'underline) - "*Face for keybinding display in apropos output or `nil'. + "*Face for keybinding display in apropos output or `nil'. This looks good, but slows down the commands several times.") ;; XEmacs addition @@ -94,11 +94,11 @@ (defvar apropos-property-face (if (boundp 'font-lock-variable-name-face) font-lock-variable-name-face 'bold-italic) - "*Face for property name in apropos output or `nil'. + "*Face for property name in apropos output or `nil'. This looks good, but slows down the commands several times.") (defvar apropos-match-face 'secondary-selection - "*Face for matching part in apropos-documentation/value output or `nil'. + "*Face for matching part in apropos-documentation/value output or `nil'. This looks good, but slows down the commands several times.") @@ -594,7 +594,7 @@ (defun apropos-macrop (symbol) - "T if SYMBOL is a Lisp macro." + "Return t if SYMBOL is a Lisp macro." (and (fboundp symbol) (consp (setq symbol (symbol-function symbol)))