aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/window.c5
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 @@
12010-07-22 Christoph Scholtes <cschol2112@gmail.com>
2
3 * window.c (Fwindow_height): Doc fix (bug#6518).
4
12010-07-21 Juanma Barranquero <lekktu@gmail.com> 52010-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.
518WINDOW defaults to the selected window. 518WINDOW defaults to the selected window.
519 519
520The return value includes WINDOW's mode line and header line, if any. */) 520The return value includes WINDOW's mode line and header line, if any.
521
522Note: The function does not take into account the value of `line-spacing'
523when calculating the number of lines in WINDOW. */)
521 (window) 524 (window)
522 Lisp_Object window; 525 Lisp_Object window;
523{ 526{