diff options
| author | Christoph Scholtes | 2010-07-23 01:57:23 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-23 01:57:23 +0200 |
| commit | a77cfeaf4be9f60708ead31b6f92015bdb154129 (patch) | |
| tree | 9b2c6ce54d6226efed785875751f6a4956f089cc /src | |
| parent | 1c84bc7afa938f6de19345d7d5c5483fab7852ec (diff) | |
| download | emacs-a77cfeaf4be9f60708ead31b6f92015bdb154129.tar.gz emacs-a77cfeaf4be9f60708ead31b6f92015bdb154129.zip | |
* window.c (Fwindow_height): Doc fix (bug#6518).
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 f50f1771232..07db0ab32cc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-07-22 Christoph Scholtes <cschol2112@gmail.com> | ||
| 2 | |||
| 3 | * window.c (Fwindow_height): Doc fix (bug#6518). | ||
| 4 | |||
| 1 | 2010-07-21 Juanma Barranquero <lekktu@gmail.com> | 5 | 2010-07-21 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 6 | ||
| 3 | * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix. | 7 | * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix. |
diff --git a/src/window.c b/src/window.c index 64a97437939..f9a2d31b4fe 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -517,7 +517,10 @@ DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0, | |||
| 517 | doc: /* Return the number of lines in WINDOW. | 517 | doc: /* Return the number of lines in WINDOW. |
| 518 | WINDOW defaults to the selected window. | 518 | WINDOW defaults to the selected window. |
| 519 | 519 | ||
| 520 | The return value includes WINDOW's mode line and header line, if any. */) | 520 | The return value includes WINDOW's mode line and header line, if any. |
| 521 | |||
| 522 | Note: The function does not take into account the value of `line-spacing' | ||
| 523 | when calculating the number of lines in WINDOW. */) | ||
| 521 | (window) | 524 | (window) |
| 522 | Lisp_Object window; | 525 | Lisp_Object window; |
| 523 | { | 526 | { |