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
Open sidebar
emacs
emacs
Commits
8868a238
Commit
8868a238
authored
Mar 06, 2011
by
Paul Eggert
Browse files
* xdisp.c (redisplay_window): Rename local to avoid shadowing.
parent
07b48fa9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
src/ChangeLog
src/ChangeLog
+2
-0
src/xdisp.c
src/xdisp.c
+2
-2
No files found.
src/ChangeLog
View file @
8868a238
...
...
@@ -14,6 +14,8 @@
* lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
* xdisp.c (redisplay_window): Rename local to avoid shadowing.
2011-03-06 Chong Yidong <cyd@stupidchicken.com>
* xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
src/xdisp.c
View file @
8868a238
...
...
@@ -14163,11 +14163,11 @@ redisplay_window (Lisp_Object window, int just_this_one_p)
{
/* The function returns -1 if new fonts were loaded, 1 if
successful, 0 if not successful. */
int
rc
= try_scrolling (window, just_this_one_p,
int
ss
= try_scrolling (window, just_this_one_p,
scroll_conservatively,
emacs_scroll_step,
temp_scroll_step, last_line_misfit);
switch (
rc
)
switch (
ss
)
{
case SCROLLING_SUCCESS:
goto done;
...
...
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