aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-04-10 07:45:07 +0000
committerJim Blandy1993-04-10 07:45:07 +0000
commit4bafa97229e4aa48955c00af95dcb85f66cff609 (patch)
tree31198016b2599cd6fe9cb41bf8c3acfed0e12c73
parent9a5336ae36b3bd09c38aef61e8188e09172d3885 (diff)
downloademacs-4bafa97229e4aa48955c00af95dcb85f66cff609.tar.gz
emacs-4bafa97229e4aa48955c00af95dcb85f66cff609.zip
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
-rw-r--r--src/keyboard.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 8f4b9b4425f..aa8a5e05467 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -521,6 +521,9 @@ echo_dash ()
521{ 521{
522 if (!immediate_echo && echoptr == echobuf) 522 if (!immediate_echo && echoptr == echobuf)
523 return; 523 return;
524 /* Do nothing if not echoing at all. */
525 if (echoptr == 0)
526 return;
524 527
525 /* Put a dash at the end of the buffer temporarily, 528 /* Put a dash at the end of the buffer temporarily,
526 but make it go away when the next character is added. */ 529 but make it go away when the next character is added. */