* comint.el (comint-get-old-input-default): Fix thinko in last change.
Fixes: debbugs:9865
This commit is contained in:
parent
d53e174785
commit
81a0a2681d
1 changed files with 1 additions and 1 deletions
|
@ -2152,7 +2152,7 @@ If `comint-use-prompt-regexp' is non-nil, then return
|
|||
the current line with any initial string matching the regexp
|
||||
`comint-prompt-regexp' removed."
|
||||
(let (bof)
|
||||
(if (and comint-use-prompt-regexp
|
||||
(if (and (not comint-use-prompt-regexp)
|
||||
;; Make sure we're in an input rather than output field.
|
||||
(null (get-char-property (setq bof (field-beginning)) 'field)))
|
||||
(field-string-no-properties bof)
|
||||
|
|
Loading…
Add table
Reference in a new issue