aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-06-26 18:14:13 +0000
committerRichard M. Stallman1994-06-26 18:14:13 +0000
commit7d637a0d6d20c58be812272f045e95930e0a0250 (patch)
tree165a8fe441dc5e71c254bfb1dc01430b28237452 /src
parentc0d45f9d61bca30fe2f8923f10e37a273e195a40 (diff)
downloademacs-7d637a0d6d20c58be812272f045e95930e0a0250.tar.gz
emacs-7d637a0d6d20c58be812272f045e95930e0a0250.zip
(echo_dash): Fix backwards conditional.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index b235588e0cd..246c79f59cc 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -576,7 +576,7 @@ echo_dash ()
576 if (!immediate_echo && echoptr == echobuf) 576 if (!immediate_echo && echoptr == echobuf)
577 return; 577 return;
578 /* Do nothing if we just printed a prompt. */ 578 /* Do nothing if we just printed a prompt. */
579 if (echo_after_prompt != echoptr - echobuf) 579 if (echo_after_prompt == echoptr - echobuf)
580 return; 580 return;
581 /* Do nothing if not echoing at all. */ 581 /* Do nothing if not echoing at all. */
582 if (echoptr == 0) 582 if (echoptr == 0)