Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
7bc18990
Commit
7bc18990
authored
Jan 13, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fredraw_display): Redraw all visible frames.
Make the non-multi-frame version interactive.
parent
40a45a9f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/dispnew.c
src/dispnew.c
+3
-3
No files found.
src/dispnew.c
View file @
7bc18990
...
...
@@ -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."
)
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment