Changeset 4018 for vendor/emacs-CVS_HEAD/lisp/help-fns.el
- Timestamp:
- 01/28/06 09:46:44 (3 years ago)
- Files:
-
- vendor/emacs-CVS_HEAD/lisp/help-fns.el (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
vendor/emacs-CVS_HEAD/lisp/help-fns.el
r3988 r4018 2 2 3 3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 4 ;; 2002, 2003, 2004, 2005 Free Software Foundation, Inc.4 ;; 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 5 5 6 6 ;; Maintainer: FSF … … 114 114 (format "Describe function (default %s): " fn) 115 115 "Describe function: ") 116 obarray 'fboundp t nil nil (symbol-name fn))) 116 obarray 'fboundp t nil nil 117 (and fn (symbol-name fn)))) 117 118 (list (if (equal val "") 118 119 fn (intern val))))) … … 224 225 file))))) 225 226 226 ;;;###autoload227 227 (defface help-argument-name '((((supports :slant italic)) :inherit italic)) 228 228 "Face to highlight argument names in *Help* buffers." … … 437 437 (t "[Missing arglist. Please make a bug report.]"))) 438 438 (high (help-highlight-arguments use doc))) 439 (insert (car high) "\n") 439 (let ((fill-begin (point))) 440 (insert (car high) "\n") 441 (fill-region fill-begin (point))) 440 442 (setq doc (cdr high)))) 441 443 (let ((obsolete (and … … 554 556 variable file-name))) 555 557 (if valvoid 556 (princ "It is void as a variable. \n")558 (princ "It is void as a variable.") 557 559 (princ "Its "))) 558 560 (if valvoid 559 (princ " is void as a variable. \n")561 (princ " is void as a variable.") 560 562 (princ "'s ")))) 561 563 (if valvoid
