diff lisp/comint.el @ 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 b9a9389714e1
children e3c21008877f
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)