diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-08-27 19:06:19 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-08-27 19:06:19 +0000 |
commit | 62e57a8f5ba9636d300bd414d070cc88fd6897c2 (patch) | |
tree | bd5dd6b623c0baa633e33aa7ae4d81747257cc29 /lisp | |
parent | fa83f2500ba58af2af6bf4f7ba3d220a69f8eaf6 (diff) | |
download | emacs-62e57a8f5ba9636d300bd414d070cc88fd6897c2.tar.gz |
(comint-arguments): Treat \n and \t like space.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/comint.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el index b0135faf980..45325e7e4db 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1043,7 +1043,7 @@ We assume whitespace separates arguments, except within quotes. Also, a run of one or more of a single character in `comint-delimiter-argument-list' is a separate argument. Argument 0 is the command name." - (let ((argpart "[^ \"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)") + (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)") (args ()) (pos 0) (count 0) beg str value quotes) |