# HG changeset patch # User Richard M. Stallman # Date 778014379 0 # Node ID f84dbccdff8787f407b11db3560c8005ac7d9c13 # Parent 3351fa6afe8f58b00f9d3d85fd07e3957f7a4081 (comint-arguments): Treat \n and \t like space. diff -r 3351fa6afe8f -r f84dbccdff87 lisp/comint.el --- 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)