aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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{