summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-03-14 04:42:18 +0000
committerRichard M. Stallman <rms@gnu.org>1998-03-14 04:42:18 +0000
commite4947876fb16af965e580f1b82247eb2aab2ef77 (patch)
treecce166b7451f991ee3bb529260dfa06adbc3dd89 /lisp/comint.el
parent5b9dfc596390adeb3b69693b7b8ac6e4c110b7bf (diff)
downloademacs-e4947876fb16af965e580f1b82247eb2aab2ef77.tar.gz
(comint-word): store-match-data => set-match-data.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 6c44a551123..072c64724ae 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1983,7 +1983,7 @@ plus all non-ASCII characters."
(forward-char 1))
;; Set match-data to match the entire string.
(when (< (point) here)
- (store-match-data (list (point) here))
+ (set-match-data (list (point) here))
(match-string 0)))))
(defun comint-substitute-in-file-name (filename)