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
f3273b67
Commit
f3273b67
authored
Oct 09, 1995
by
Richard M. Stallman
Browse files
(temp_echo_area_glyphs): Restore the old point value.
parent
8beb0513
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
src/minibuf.c
src/minibuf.c
+3
-1
No files found.
src/minibuf.c
View file @
f3273b67
...
...
@@ -1050,6 +1050,7 @@ temp_echo_area_glyphs (m)
char
*
m
;
{
int
osize
=
ZV
;
int
opoint
=
PT
;
Lisp_Object
oinhibit
;
oinhibit
=
Vinhibit_quit
;
...
...
@@ -1058,10 +1059,11 @@ temp_echo_area_glyphs (m)
SET_PT
(
osize
);
insert_string
(
m
);
SET_PT
(
o
size
);
SET_PT
(
o
point
);
Vinhibit_quit
=
Qt
;
Fsit_for
(
make_number
(
2
),
Qnil
,
Qnil
);
del_range
(
PT
,
ZV
);
SET_PT
(
opoint
);
if
(
!
NILP
(
Vquit_flag
))
{
Vquit_flag
=
Qnil
;
...
...
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