Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3dbd9ee4
Commit
3dbd9ee4
authored
Feb 01, 1996
by
Richard M. Stallman
Browse files
(echo_now): Renamed from `echo'. All callers changed.
parent
7ea13e12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/keyboard.c
src/keyboard.c
+6
-6
No files found.
src/keyboard.c
View file @
3dbd9ee4
...
...
@@ -560,7 +560,7 @@ echo_prompt (str)
current_kboard->echo_after_prompt = len;
echo ();
echo
_now
();
}
/* Add C to the echo string, if echoing is going on.
...
...
@@ -608,7 +608,7 @@ echo_char (c)
*ptr = 0;
current_kboard->echoptr = ptr;
echo ();
echo
_now
();
}
}
...
...
@@ -633,13 +633,13 @@ echo_dash ()
current_kboard->echoptr[0] = '-';
current_kboard->echoptr[1] = 0;
echo ();
echo
_now
();
}
/* Display the current echo string, and begin echoing if not already
doing so. */
echo ()
echo
_now
()
{
if (!current_kboard->immediate_echo)
{
...
...
@@ -1825,7 +1825,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
This is because we are probably about to display a menu,
and we don't want to delay before doing so. */
if (EVENT_HAS_PARAMETERS (prev_event))
echo ();
echo
_now
();
else
{
save_getcjmp (save_jump);
...
...
@@ -1833,7 +1833,7 @@ read_char (commandflag, nmaps, maps, prev_event, used_mouse_menu)
tem0 = sit_for (echo_keystrokes, 0, 1, 1);
restore_getcjmp (save_jump);
if (EQ (tem0, Qt))
echo ();
echo
_now
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment