# HG changeset patch # User Richard M. Stallman # Date 813256619 0 # Node ID 74da6a581095621f0f4a14c52ee082a1d7eb9f50 # Parent 4056f3c1cbfc92cbdaa9daeb78722518f4868768 (temp_echo_area_glyphs): Restore the old point value. diff -r 4056f3c1cbfc -r 74da6a581095 src/minibuf.c --- a/src/minibuf.c Mon Oct 09 04:49:15 1995 +0000 +++ b/src/minibuf.c Mon Oct 09 16:36:59 1995 +0000 @@ -1050,6 +1050,7 @@ char *m; { int osize = ZV; + int opoint = PT; Lisp_Object oinhibit; oinhibit = Vinhibit_quit; @@ -1058,10 +1059,11 @@ SET_PT (osize); insert_string (m); - SET_PT (osize); + SET_PT (opoint); Vinhibit_quit = Qt; Fsit_for (make_number (2), Qnil, Qnil); del_range (PT, ZV); + SET_PT (opoint); if (!NILP (Vquit_flag)) { Vquit_flag = Qnil;