diff options
Diffstat (limited to 'lisp/echistory.el')
-rw-r--r-- | lisp/echistory.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/echistory.el b/lisp/echistory.el index 1d2c5d8a388..d5ee3003d68 100644 --- a/lisp/echistory.el +++ b/lisp/echistory.el @@ -27,6 +27,9 @@ (require 'electric) ; command loop (require 'chistory) ; history lister +;; Dynamically bound in electric-command-history +(defvar electric-history-in-progress) + ;;;###autoload (defun Electric-command-history-redo-expression (&optional noconfirm) "Edit current history line in minibuffer and execute result. @@ -85,6 +88,8 @@ With prefix arg NOCONFIRM, execute current line as-is without editing." (defvar electric-command-history-hook nil "If non-nil, its value is called by `electric-command-history'.") +(defvar Helper-return-blurb) ; from helper.el + (defun electric-command-history () "\\<electric-history-map>Major mode for examining and redoing commands from `command-history'. This pops up a window with the Command History listing. |