diff options
author | Kim F. Storm <storm@cua.dk> | 2004-08-02 15:20:18 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2004-08-02 15:20:18 +0000 |
commit | 7316f52cab8b75ef9f9c1e3bee9198d4fd8c1c4b (patch) | |
tree | 7f7c5fbabba0a1c52795b90ae0c7ad63df1c081e /lisp/window.el | |
parent | c296856cee8f420a0d69ca8ceaa5dc4c718a7dca (diff) | |
download | emacs-7316f52cab8b75ef9f9c1e3bee9198d4fd8c1c4b.tar.gz |
(window-buffer-height): Call compute-motion with nil width.
Diffstat (limited to 'lisp/window.el')
-rw-r--r-- | lisp/window.el | 2 |
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." '(0 . 0) (- (point-max) (if ignore-final-newline 1 0)) (cons 0 100000000) - (window-width window) + nil nil window)))))) |