summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-10-02 03:03:32 +0000
committerKarl Heuer <kwzh@gnu.org>1997-10-02 03:03:32 +0000
commit9f8ac7f9ea047a33af400e03a800ed146dcc896e (patch)
tree25f88aaee7dc23f4173b320cf6ce03b5c145e498 /lisp/comint.el
parent35378a097bac5d5f5e9b6fc5049e1d3bddb4c815 (diff)
downloademacs-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.el3
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)))