Mercurial > emacs
changeset 8067:1aaf0461446d
(echo_dash): Fix backwards conditional.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 26 Jun 1994 18:14:13 +0000 |
parents | b6301bd38638 |
children | 40e02f4c8ae1 |
files | src/keyboard.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sun Jun 26 16:29:43 1994 +0000 +++ b/src/keyboard.c Sun Jun 26 18:14:13 1994 +0000 @@ -576,7 +576,7 @@ 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)