diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-01-13 05:17:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-01-13 05:17:34 +0000 |
| commit | 7bc18990e1e8d4aae943df4da140d4a4c5ad745a (patch) | |
| tree | 61a4c405ca8161f1aa80482728cdc83e9c978f2e | |
| parent | 40a45a9f94ff359b1285cc8720a55ee9a98c5972 (diff) | |
| download | emacs-7bc18990e1e8d4aae943df4da140d4a4c5ad745a.tar.gz | |
(Fredraw_display): Redraw all visible frames.
Make the non-multi-frame version interactive.
| -rw-r--r-- | src/dispnew.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index ebbc4fedee8..61337b3459a 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -165,7 +165,7 @@ DEFUN ("redraw-frame", Fredraw_frame, Sredraw_frame, 1, 1, 0, } DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", - "Redraw all frames marked as having their images garbled.") + "Clear and redisplay all visible frames." () { Lisp_Object frame, tail; @@ -173,7 +173,7 @@ DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) { frame = XCONS (tail)->car; - if (FRAME_GARBAGED_P (XFRAME (frame)) && FRAME_VISIBLE_P (XFRAME (frame))) + if (FRAME_VISIBLE_P (XFRAME (frame))) Fredraw_frame (frame); } return Qnil; @@ -189,7 +189,7 @@ redraw_frame (f) #else /* not MULTI_FRAME */ -DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, 0, +DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", "Clear screen and output again what is supposed to appear on it.") () { |
