mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-02 02:10:46 -08:00
* keyboard.c (echo_dash): Do nothing if echoptr is 0.
This commit is contained in:
parent
9a5336ae36
commit
4bafa97229
1 changed files with 3 additions and 0 deletions
|
|
@ -521,6 +521,9 @@ echo_dash ()
|
|||
{
|
||||
if (!immediate_echo && echoptr == echobuf)
|
||||
return;
|
||||
/* Do nothing if not echoing at all. */
|
||||
if (echoptr == 0)
|
||||
return;
|
||||
|
||||
/* Put a dash at the end of the buffer temporarily,
|
||||
but make it go away when the next character is added. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue