Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f0641eff
Commit
f0641eff
authored
Mar 22, 2011
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* scroll.c (do_scrolling): Work around GCC bug 48228.
See <
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228
>.
parent
39f5e519
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/scroll.c
src/scroll.c
+2
-2
No files found.
src/ChangeLog
View file @
f0641eff
2011-03-22 Paul Eggert <eggert@cs.ucla.edu>
* scroll.c (do_scrolling): Work around GCC bug 48228.
See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
2011-03-21 Paul Eggert <eggert@cs.ucla.edu>
* frame.c (Fmodify_frame_parameters): Simplify loop counter.
src/scroll.c
View file @
f0641eff
...
...
@@ -245,8 +245,8 @@ do_scrolling (struct frame *frame, struct glyph_matrix *current_matrix, struct m
int
i
,
j
,
k
;
/* Set to 1 if we have set a terminal window with
set_terminal_window. */
int
terminal_window_p
=
0
;
set_terminal_window.
It's unsigned to work around GCC bug 48228.
*/
unsigned
int
terminal_window_p
=
0
;
/* A queue for line insertions to be done. */
struct
queue
{
int
count
,
pos
;
};
...
...
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