diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-04-18 21:16:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-04-18 21:16:50 +0000 |
commit | 7cf8b3fcac2e5b4f7264b5b4c4c1defda9918b50 (patch) | |
tree | a8711281bb869a449ea3cf878c06fdc6bfa60943 /lisp/apropos.el | |
parent | 4cabf12bbc89a8f7370ca4c670a73de4cef61687 (diff) | |
download | emacs-7cf8b3fcac2e5b4f7264b5b4c4c1defda9918b50.tar.gz |
(apropos-print): Don't do where-is on self-insert-command.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index b490b8173ba..3889655ff99 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -908,6 +908,7 @@ If non-nil TEXT is a string that will be printed as a heading." ;; Calculate key-bindings if we want them. (and do-keys (commandp symbol) + (not (eq symbol 'self-insert-command)) (indent-to 30 1) (if (let ((keys (save-excursion |