summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-07-07 18:54:22 +0000
committerKarl Heuer <kwzh@gnu.org>1995-07-07 18:54:22 +0000
commit7d4f635a7a4f9f0fcd9639f80e927fd1515e4d00 (patch)
tree0a41d011b18b840e1be0b3e0e0ab8f01ff3b38f7 /lisp/help.el
parent54985f2c109417bfe5c0b05184803a32e26f0e72 (diff)
downloademacs-7d4f635a7a4f9f0fcd9639f80e927fd1515e4d00.tar.gz
(command-apropos): Deleted function. This is replaced by
apropos-command in apropos.el.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el12
1 files changed, 0 insertions, 12 deletions
diff --git a/lisp/help.el b/lisp/help.el
index 3275689fb1f..c51c027863c 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -577,18 +577,6 @@ Argument is a command definition, usually a symbol with a function definition."
(message "%s is not on any key" definition)))
nil)
-(defun command-apropos (string)
- "Like apropos but lists only symbols that are names of commands
-\(interactively callable functions). Argument REGEXP is a regular expression
-that is matched against command symbol names. Returns list of symbols and
-documentation found."
- (interactive "sCommand apropos (regexp): ")
- (let ((message
- (let ((standard-output (get-buffer-create "*Help*")))
- (print-help-return-message 'identity))))
- (if (apropos string t 'commandp t)
- (and message (message message)))))
-
(defun locate-library (library &optional nosuffix)
"Show the full path name of Emacs library LIBRARY.
This command searches the directories in `load-path' like `M-x load-library'