diff options
| author | Martin Rudalics | 2008-10-29 11:00:51 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2008-10-29 11:00:51 +0000 |
| commit | 4414f58f6792dcfb662839435cfe48d3e51ca33b (patch) | |
| tree | b6004b62b291d313f7745b78c2a6237e6970961d /src | |
| parent | 8fef9de15dcfaa1fc17fd6bf8fba513bf0f21aae (diff) | |
| download | emacs-4414f58f6792dcfb662839435cfe48d3e51ca33b.tar.gz emacs-4414f58f6792dcfb662839435cfe48d3e51ca33b.zip | |
(syms_of_xdisp): Mention set-window-buffer in
doc-string of window-scroll-functions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/xdisp.c | 7 |
2 files changed, 11 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f2b3786245a..0567f7bfb89 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-10-29 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * window.c (Fwindow_height, Fdelete_window, set_window_buffer) | ||
| 4 | (Fwindow_text_height): Clarify doc-strings. | ||
| 5 | * xdisp.c (syms_of_xdisp): Mention set-window-buffer in | ||
| 6 | doc-string of window-scroll-functions. | ||
| 7 | |||
| 1 | 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de> | 8 | 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 9 | ||
| 3 | * category.c (syms_of_category): Fix typo in docstring. | 10 | * category.c (syms_of_category): Fix typo in docstring. |
diff --git a/src/xdisp.c b/src/xdisp.c index 5509d1e65ed..7814bac5195 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -25059,9 +25059,10 @@ all the functions in the list are called, with the frame as argument. */); | |||
| 25059 | 25059 | ||
| 25060 | DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions, | 25060 | DEFVAR_LISP ("window-scroll-functions", &Vwindow_scroll_functions, |
| 25061 | doc: /* List of functions to call before redisplaying a window with scrolling. | 25061 | doc: /* List of functions to call before redisplaying a window with scrolling. |
| 25062 | Each function is called with two arguments, the window | 25062 | Each function is called with two arguments, the window and its new |
| 25063 | and its new display-start position. Note that the value of `window-end' | 25063 | display-start position. Note that these functions are also called by |
| 25064 | is not valid when these functions are called. */); | 25064 | `set-window-buffer'. Also note that the value of `window-end' is not |
| 25065 | valid when these functions are called. */); | ||
| 25065 | Vwindow_scroll_functions = Qnil; | 25066 | Vwindow_scroll_functions = Qnil; |
| 25066 | 25067 | ||
| 25067 | DEFVAR_LISP ("window-text-change-functions", | 25068 | DEFVAR_LISP ("window-text-change-functions", |