Mercurial > emacs
changeset 9264:9338a124ea84
(redraw_frame, Fsleep_for, sit_for, Fsit_for): Use new accessor macros instead
of calling XSET directly.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 04 Oct 1994 12:03:19 +0000 |
parents | cda13734e32c |
children | e44908d7323b |
files | src/dispnew.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dispnew.c Tue Oct 04 12:01:46 1994 +0000 +++ b/src/dispnew.c Tue Oct 04 12:03:19 1994 +0000 @@ -186,7 +186,7 @@ FRAME_PTR f; { Lisp_Object frame; - XSET (frame, Lisp_Frame, f); + XSETFRAME (frame, f); Fredraw_frame (frame); } @@ -2163,7 +2163,7 @@ int sec, usec; if (NILP (milliseconds)) - XSET (milliseconds, Lisp_Int, 0); + XSETINT (milliseconds, 0); else CHECK_NUMBER (milliseconds, 1); usec = XINT (milliseconds) * 1000; @@ -2269,7 +2269,7 @@ gobble_input (0); #endif - XSET (read_kbd, Lisp_Int, reading ? -1 : 1); + XSETINT (read_kbd, reading ? -1 : 1); wait_reading_process_input (sec, usec, read_kbd, display); @@ -2318,7 +2318,7 @@ int sec, usec; if (NILP (milliseconds)) - XSET (milliseconds, Lisp_Int, 0); + XSETINT (milliseconds, 0); else CHECK_NUMBER (milliseconds, 1); usec = XINT (milliseconds) * 1000;