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
224227d1
Commit
224227d1
authored
Feb 28, 2001
by
Ken Raeburn
Browse files
* window.c (set_window_buffer): Field vscroll is an int, not a lisp object.
parent
11ef99b9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/window.c
src/window.c
+1
-1
No files found.
src/ChangeLog
View file @
224227d1
2001-02-28 Ken Raeburn <raeburn@gnu.org>
* window.c (set_window_buffer): Field vscroll is an int, not a
lisp object.
2001-02-28 Gerd Moellmann <gerd@gnu.org>
* xterm.c (x_set_window_size): Don't use `None' with widgets; use
...
...
src/window.c
View file @
224227d1
...
...
@@ -2631,7 +2631,7 @@ set_window_buffer (window, buffer, run_hooks_p)
bzero (&w->last_cursor, sizeof w->last_cursor);
w->window_end_valid = Qnil;
w->hscroll = w->min_hscroll = make_number (0);
w->vscroll =
make_number (0)
;
w->vscroll =
0
;
set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
set_marker_restricted (w->start,
make_number (b->last_window_start),
...
...
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