aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-08-02 15:20:18 +0000
committerKim F. Storm2004-08-02 15:20:18 +0000
commit7316f52cab8b75ef9f9c1e3bee9198d4fd8c1c4b (patch)
tree7f7c5fbabba0a1c52795b90ae0c7ad63df1c081e
parentc296856cee8f420a0d69ca8ceaa5dc4c718a7dca (diff)
downloademacs-7316f52cab8b75ef9f9c1e3bee9198d4fd8c1c4b.tar.gz
emacs-7316f52cab8b75ef9f9c1e3bee9198d4fd8c1c4b.zip
(window-buffer-height): Call compute-motion with nil width.
-rw-r--r--lisp/window.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/window.el b/lisp/window.el
index 96bfc8b5581..5ec752f3f23 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -408,7 +408,7 @@ lines than are actually needed in the case where some error may be present."
408 '(0 . 0) 408 '(0 . 0)
409 (- (point-max) (if ignore-final-newline 1 0)) 409 (- (point-max) (if ignore-final-newline 1 0))
410 (cons 0 100000000) 410 (cons 0 100000000)
411 (window-width window) 411 nil
412 nil 412 nil
413 window)))))) 413 window))))))
414 414