From: Richard M. Stallman Date: Thu, 17 Jan 2002 01:41:11 +0000 (+0000) Subject: (comint-simple-send): Fix previous change. X-Git-Tag: ttn-vms-21-2-B4~17102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18e84493fa80f70db8455724d1ce9dbcb93d1b21;p=emacs.git (comint-simple-send): Fix previous change. --- 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, 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")))