diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-02 03:03:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-02 03:03:32 +0000 |
commit | 9f8ac7f9ea047a33af400e03a800ed146dcc896e (patch) | |
tree | 25f88aaee7dc23f4173b320cf6ce03b5c145e498 /lisp/comint.el | |
parent | 35378a097bac5d5f5e9b6fc5049e1d3bddb4c815 (diff) | |
download | emacs-9f8ac7f9ea047a33af400e03a800ed146dcc896e.tar.gz |
(comint-regexp-arg): No need to bind
minibuffer-history-sexp-flag any more.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r-- | lisp/comint.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index 381938b568c..39a084f9cf3 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -796,8 +796,7 @@ See also `comint-read-input-ring'." (defun comint-regexp-arg (prompt) ;; Return list of regexp and prefix arg using PROMPT. - (let* ((minibuffer-history-sexp-flag nil) - ;; Don't clobber this. + (let* (;; Don't clobber this. (last-command last-command) (regexp (read-from-minibuffer prompt nil nil nil 'minibuffer-history-search-history))) |