aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorChristoph Scholtes2010-07-23 01:57:23 +0200
committerJuanma Barranquero2010-07-23 01:57:23 +0200
commita77cfeaf4be9f60708ead31b6f92015bdb154129 (patch)
tree9b2c6ce54d6226efed785875751f6a4956f089cc /src/window.c
parent1c84bc7afa938f6de19345d7d5c5483fab7852ec (diff)
downloademacs-a77cfeaf4be9f60708ead31b6f92015bdb154129.tar.gz
emacs-a77cfeaf4be9f60708ead31b6f92015bdb154129.zip
* window.c (Fwindow_height): Doc fix (bug#6518).
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c5
1 files changed, 4 insertions, 1 deletions
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{