Mercurial > emacs
changeset 8641:f84dbccdff87
(comint-arguments): Treat \n and \t like space.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 27 Aug 1994 19:06:19 +0000 |
parents | 3351fa6afe8f |
children | ae3b75bae5d7 |
files | lisp/comint.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/comint.el Fri Aug 26 23:19:19 1994 +0000 +++ b/lisp/comint.el Sat Aug 27 19:06:19 1994 +0000 @@ -1043,7 +1043,7 @@ 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)