diff options
author | Noah Friedman <friedman@splode.com> | 1995-11-21 15:21:34 +0000 |
---|---|---|
committer | Noah Friedman <friedman@splode.com> | 1995-11-21 15:21:34 +0000 |
commit | 6260a5361faba580e9d8796470778041b965e6aa (patch) | |
tree | 40c07d554b702dfaabb029b4b30963e124e7bcee /lisp/emacs-lisp | |
parent | 6b5ad23595199b132e2ac5f1ed0174074a7f714a (diff) | |
download | emacs-6260a5361faba580e9d8796470778041b965e6aa.tar.gz |
(eldoc-mode-print-current-symbol-info): Do nothing if executing-macro.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eldoc.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/eldoc.el b/lisp/emacs-lisp/eldoc.el index f8a83073f4e..68bb9b6d4de 100644 --- a/lisp/emacs-lisp/eldoc.el +++ b/lisp/emacs-lisp/eldoc.el @@ -11,9 +11,9 @@ ;; LCD Archive Entry: ;; eldoc|Noah Friedman|friedman@prep.ai.mit.edu| ;; show function arglist or variable docstring in echo area| -;; $Date: 1995/11/13 01:37:40 $|$Revision: 1.2 $|~/misc/eldoc.el.gz| +;; $Date: 1995/11/18 22:32:07 $|$Revision: 1.3 $|~/misc/eldoc.el.gz| -;; $Id: eldoc.el,v 1.2 1995/11/13 01:37:40 friedman Exp friedman $ +;; $Id: eldoc.el,v 1.3 1995/11/18 22:32:07 friedman Exp friedman $ ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -185,6 +185,7 @@ overwrite them unless it is more restrained." (defun eldoc-mode-print-current-symbol-info () (and eldoc-mode + (not executing-macro) ;; Having this mode operate in the minibuffer makes it impossible to ;; see what you're doing. (not (eq (selected-window) (minibuffer-window))) |