diff options
| author | Miles Bader | 2000-12-11 07:31:08 +0000 |
|---|---|---|
| committer | Miles Bader | 2000-12-11 07:31:08 +0000 |
| commit | a4c22453ea45ad39fab386c6b726423c399be45f (patch) | |
| tree | 2db5172f364da057062ccf2f323dcc585974f458 | |
| parent | d80aeee83d1ea38393b94726a163c16a4f42da0e (diff) | |
| download | emacs-a4c22453ea45ad39fab386c6b726423c399be45f.tar.gz emacs-a4c22453ea45ad39fab386c6b726423c399be45f.zip | |
(window-text-height): Function removed (now in C).
| -rw-r--r-- | lisp/window.el | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lisp/window.el b/lisp/window.el index 58f6f545e19..5d8c9a905cb 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -335,29 +335,6 @@ This is a kluge." | |||
| 335 | 0)) | 335 | 0)) |
| 336 | 336 | ||
| 337 | 337 | ||
| 338 | ;;; These functions should eventually be replaced with versions that | ||
| 339 | ;;; really do the job (instead of using the kludgey mode-line face | ||
| 340 | ;;; hacking junk). | ||
| 341 | |||
| 342 | (defun window-text-height (&optional window) | ||
| 343 | "Return the height in lines of the text display area of WINDOW. | ||
| 344 | This doesn't include the mode-line (or header-line if any) or any | ||
| 345 | partial-height lines in the text display area. | ||
| 346 | |||
| 347 | Note that the current implementation of this function may sometimes | ||
| 348 | return an inaccurate value, but attempts to be conservative, by | ||
| 349 | returning fewer lines than actually exist in the case where the real | ||
| 350 | value cannot be determined." | ||
| 351 | (with-current-buffer (window-buffer window) | ||
| 352 | (- (window-height window) | ||
| 353 | (if (and (not (window-minibuffer-p window)) | ||
| 354 | mode-line-format) | ||
| 355 | (1+ (mode-line-window-height-fudge)) | ||
| 356 | 0) | ||
| 357 | (if header-line-format | ||
| 358 | (1+ (mode-line-window-height-fudge 'header-line)) | ||
| 359 | 0)))) | ||
| 360 | |||
| 361 | (defun set-window-text-height (window height) | 338 | (defun set-window-text-height (window height) |
| 362 | "Sets the height in lines of the text display area of WINDOW to HEIGHT. | 339 | "Sets the height in lines of the text display area of WINDOW to HEIGHT. |
| 363 | This doesn't include the mode-line (or header-line if any) or any | 340 | This doesn't include the mode-line (or header-line if any) or any |