From 18e84493fa80f70db8455724d1ce9dbcb93d1b21 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 17 Jan 2002 01:41:11 +0000 Subject: [PATCH] (comint-simple-send): Fix previous change. --- lisp/comint.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"))) -- 2.39.5