aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-08-27 19:06:19 +0000
committerRichard M. Stallman1994-08-27 19:06:19 +0000
commit5e778cd16a92ecd30c28b51fedd6840b04832f02 (patch)
tree08a99bfa314dd2ea28f311a080e19df1127a291f
parentbc7c9d8c6fc9747bdf09ad454ac8e5a973ef18c1 (diff)
downloademacs-5e778cd16a92ecd30c28b51fedd6840b04832f02.tar.gz
emacs-5e778cd16a92ecd30c28b51fedd6840b04832f02.zip
(comint-arguments): Treat \n and \t like space.
-rw-r--r--lisp/comint.el2
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.
1043Also, a run of one or more of a single character 1043Also, a run of one or more of a single character
1044in `comint-delimiter-argument-list' is a separate argument. 1044in `comint-delimiter-argument-list' is a separate argument.
1045Argument 0 is the command name." 1045Argument 0 is the command name."
1046 (let ((argpart "[^ \"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)") 1046 (let ((argpart "[^ \n\t\"'`]+\\|\\(\"[^\"]*\"\\|'[^']*'\\|`[^`]*`\\)")
1047 (args ()) (pos 0) 1047 (args ()) (pos 0)
1048 (count 0) 1048 (count 0)
1049 beg str value quotes) 1049 beg str value quotes)