aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-01-13 05:17:34 +0000
committerRichard M. Stallman1993-01-13 05:17:34 +0000
commit7bc18990e1e8d4aae943df4da140d4a4c5ad745a (patch)
tree61a4c405ca8161f1aa80482728cdc83e9c978f2e /src
parent40a45a9f94ff359b1285cc8720a55ee9a98c5972 (diff)
downloademacs-7bc18990e1e8d4aae943df4da140d4a4c5ad745a.tar.gz
emacs-7bc18990e1e8d4aae943df4da140d4a4c5ad745a.zip
(Fredraw_display): Redraw all visible frames.
Make the non-multi-frame version interactive.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c6
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,
165} 165}
166 166
167DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "", 167DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "",
168 "Redraw all frames marked as having their images garbled.") 168 "Clear and redisplay all visible frames."
169 () 169 ()
170{ 170{
171 Lisp_Object frame, tail; 171 Lisp_Object frame, tail;
@@ -173,7 +173,7 @@ DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "",
173 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr) 173 for (tail = Vframe_list; CONSP (tail); tail = XCONS (tail)->cdr)
174 { 174 {
175 frame = XCONS (tail)->car; 175 frame = XCONS (tail)->car;
176 if (FRAME_GARBAGED_P (XFRAME (frame)) && FRAME_VISIBLE_P (XFRAME (frame))) 176 if (FRAME_VISIBLE_P (XFRAME (frame)))
177 Fredraw_frame (frame); 177 Fredraw_frame (frame);
178 } 178 }
179 return Qnil; 179 return Qnil;
@@ -189,7 +189,7 @@ redraw_frame (f)
189 189
190#else /* not MULTI_FRAME */ 190#else /* not MULTI_FRAME */
191 191
192DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, 0, 192DEFUN ("redraw-display", Fredraw_display, Sredraw_display, 0, 0, "",
193 "Clear screen and output again what is supposed to appear on it.") 193 "Clear screen and output again what is supposed to appear on it.")
194 () 194 ()
195{ 195{