diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-06-19 02:44:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-06-19 02:44:46 +0000 |
commit | 82fb111c22faebb8fd98b30f1bde2d0d01b723eb (patch) | |
tree | 8b2e79b4b6aa9e07b06c3b9d93a5b1ccb59bba99 /lisp/info-look.el | |
parent | 5a79736d825eda659f66df87459ba02ff30dd59d (diff) | |
download | emacs-82fb111c22faebb8fd98b30f1bde2d0d01b723eb.tar.gz |
(info-complete-symbol): If MODE is nil, use the default value.
Diffstat (limited to 'lisp/info-look.el')
-rw-r--r-- | lisp/info-look.el | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/info-look.el b/lisp/info-look.el index c798bb769b4..113306dc69e 100644 --- a/lisp/info-look.el +++ b/lisp/info-look.el @@ -465,12 +465,13 @@ Return nil if there is nothing appropriate." ;;;###autoload (defun info-complete-symbol (&optional mode) "Perform completion on symbol preceding point." - (interactive - (list (if (info-lookup->mode-value - 'symbol (or info-lookup-mode major-mode)) - (or info-lookup-mode major-mode) - (info-lookup-change-mode 'symbol)))) - (info-complete 'symbol mode)) + (interactive) + (info-complete 'symbol + (or mode + (if (info-lookup->mode-value + 'symbol (or info-lookup-mode major-mode)) + (or info-lookup-mode major-mode) + (info-lookup-change-mode 'symbol))))) ;;;###autoload (defun info-complete-file (&optional mode) |