changeset 42803:aeec841a65cf

(comint-simple-send): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Thu, 17 Jan 2002 01:41:11 +0000
parents d72ace523825
children 9b01a5024803
files lisp/comint.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/comint.el	Thu Jan 17 01:40:47 2002 +0000
+++ b/lisp/comint.el	Thu Jan 17 01:41:11 2002 +0000
@@ -1850,7 +1850,7 @@
 set the hook `comint-input-sender'."
   (comint-send-string proc string)
   (if comint-input-sender-no-newline
-      (if (not (string-equal input ""))
+      (if (not (string-equal string ""))
 	  (process-send-eof))
     (comint-send-string proc "\n")))