Mercurial > hg > xemacs-beta
comparison lisp/packages/info.el @ 193:f53b5ca2e663 r20-3b23
Import from CVS: tag r20-3b23
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:58:30 +0200 |
parents | 489f57a838ef |
children | 850242ba4a81 |
comparison
equal
deleted
inserted
replaced
192:9d35321dd38c | 193:f53b5ca2e663 |
---|---|
1874 | 1874 |
1875 ;;;###autoload | 1875 ;;;###autoload |
1876 (defun Info-elisp-ref (func) | 1876 (defun Info-elisp-ref (func) |
1877 "Look up an Emacs Lisp function in the Elisp manual in the Info system. | 1877 "Look up an Emacs Lisp function in the Elisp manual in the Info system. |
1878 This command is designed to be used whether you are already in Info or not." | 1878 This command is designed to be used whether you are already in Info or not." |
1879 (interactive (let ((fn (function-called-at-point)) | 1879 (interactive (let ((fn (funcall find-function-function)) |
1880 (enable-recursive-minibuffers t) | 1880 (enable-recursive-minibuffers t) |
1881 val) | 1881 val) |
1882 (setq val (completing-read | 1882 (setq val (completing-read |
1883 (format "Look up Emacs Lisp function%s: " | 1883 (format "Look up Emacs Lisp function%s: " |
1884 (if fn | 1884 (if fn |