aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/comint.el
diff options
context:
space:
mode:
authorKim F. Storm2005-02-09 15:50:47 +0000
committerKim F. Storm2005-02-09 15:50:47 +0000
commitbf247b6ed0b5e96845e785302bdaa97fcf6a8b84 (patch)
tree3e5225520dfe10e9394f68088de2fe22027aa53f /lisp/comint.el
parent1de0ae85b33c8d8cb77ab839f66d2df4f9aa7b94 (diff)
downloademacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.tar.gz
emacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.zip
Change release version from 21.4 to 22.1 throughout.
Change development version from 21.3.50 to 22.0.50.
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index f96da7fa0fd..ccd02db39cf 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -194,7 +194,7 @@ If you sometimes use comint-mode on text-only terminals or with `emacs-nw',
194you might wish to use another binding for `comint-kill-whole-line'." 194you might wish to use another binding for `comint-kill-whole-line'."
195 :type 'boolean 195 :type 'boolean
196 :group 'comint 196 :group 'comint
197 :version "21.4") 197 :version "22.1")
198 198
199(defvar comint-delimiter-argument-list () 199(defvar comint-delimiter-argument-list ()
200 "List of characters to recognise as separate arguments in input. 200 "List of characters to recognise as separate arguments in input.
@@ -809,7 +809,7 @@ buffer. The hook `comint-exec-hook' is run after each exec."
809 ;; Insert the input at point 809 ;; Insert the input at point
810 (insert (buffer-substring-no-properties 810 (insert (buffer-substring-no-properties
811 (previous-single-char-property-change (1+ pos) 'field) 811 (previous-single-char-property-change (1+ pos) 'field)
812 (next-single-char-property-change pos 'field)))))) 812 (next-single-char-property-change pos 'field))))))
813 813
814 814
815;; Input history processing in a buffer 815;; Input history processing in a buffer