diff options
| author | Eli Zaretskii | 2002-06-05 17:02:15 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-06-05 17:02:15 +0000 |
| commit | ebadb1e47f8ca120987064b4a912602ed5f7b19b (patch) | |
| tree | 1b5e4e7a608539648b093d7d7593ad4238007eed /src | |
| parent | 50496bd978159deaa1f18136e25eb7b5ae1043f2 (diff) | |
| download | emacs-ebadb1e47f8ca120987064b4a912602ed5f7b19b.tar.gz emacs-ebadb1e47f8ca120987064b4a912602ed5f7b19b.zip | |
(Fset_window_hscroll): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/window.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9814db91f20..941ded6b959 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * window.c (Fset_window_hscroll): Doc fix. | ||
| 4 | |||
| 1 | 2002-06-05 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 5 | 2002-06-05 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 6 | ||
| 3 | * fileio.c (choose_write_coding_system): Call | 7 | * fileio.c (choose_write_coding_system): Call |
diff --git a/src/window.c b/src/window.c index f73c95bf973..ffe05bca982 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -439,7 +439,10 @@ DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0, | |||
| 439 | 439 | ||
| 440 | DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0, | 440 | DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0, |
| 441 | doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL. | 441 | doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL. |
| 442 | NCOL should be zero or positive. */) | 442 | NCOL should be zero or positive. |
| 443 | |||
| 444 | Note that if `automatic-hscrolling' is non-nil, you cannot scroll the | ||
| 445 | window so that the location of point becomes invisible. */) | ||
| 443 | (window, ncol) | 446 | (window, ncol) |
| 444 | Lisp_Object window, ncol; | 447 | Lisp_Object window, ncol; |
| 445 | { | 448 | { |