]> git.eshelyaron.com Git - emacs.git/commitdiff
(echo_dash): Fix backwards conditional.
authorRichard M. Stallman <rms@gnu.org>
Sun, 26 Jun 1994 18:14:13 +0000 (18:14 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 26 Jun 1994 18:14:13 +0000 (18:14 +0000)
src/keyboard.c

index b235588e0cda99e06ac28bf8e525ff33f7698a63..246c79f59ccc89665c5586e603aa6ee2cae1c66e 100644 (file)
@@ -576,7 +576,7 @@ echo_dash ()
   if (!immediate_echo && echoptr == echobuf)
     return;
   /* Do nothing if we just printed a prompt.  */
-  if (echo_after_prompt != echoptr - echobuf)
+  if (echo_after_prompt == echoptr - echobuf)
     return;
   /* Do nothing if not echoing at all.  */
   if (echoptr == 0)