aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-17 01:41:11 +0000
committerRichard M. Stallman2002-01-17 01:41:11 +0000
commit18e84493fa80f70db8455724d1ce9dbcb93d1b21 (patch)
tree08ad0d345c9f3297fb02018347e0d751cb4a5ee3
parent9e0e631c127c6d4eef82fe73846ed9e5cdb7c089 (diff)
downloademacs-18e84493fa80f70db8455724d1ce9dbcb93d1b21.tar.gz
emacs-18e84493fa80f70db8455724d1ce9dbcb93d1b21.zip
(comint-simple-send): Fix previous change.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 472b6400eb1..30a94ba71a8 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1850,7 +1850,7 @@ This just sends STRING plus a newline. To override this,
1850set the hook `comint-input-sender'." 1850set the hook `comint-input-sender'."
1851 (comint-send-string proc string) 1851 (comint-send-string proc string)
1852 (if comint-input-sender-no-newline 1852 (if comint-input-sender-no-newline
1853 (if (not (string-equal input "")) 1853 (if (not (string-equal string ""))
1854 (process-send-eof)) 1854 (process-send-eof))
1855 (comint-send-string proc "\n"))) 1855 (comint-send-string proc "\n")))
1856 1856