diff options
| author | Martin Rudalics | 2011-10-30 09:29:56 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2011-10-30 09:29:56 +0100 |
| commit | 3d8daefefaf3bfd73ca4d8a363b044ec66a45e3a (patch) | |
| tree | 2dc57eb08f67ac05e46da3abb33071bc9b6cf738 /lisp/help.el | |
| parent | c1e2f5fa6977e86cf2797c4f4627e518b40c5182 (diff) | |
| download | emacs-3d8daefefaf3bfd73ca4d8a363b044ec66a45e3a.tar.gz emacs-3d8daefefaf3bfd73ca4d8a363b044ec66a45e3a.zip | |
Remove "iso-" infix from window combination functions.
* window.el (window-iso-combination-p, window-iso-combined-p)
(window-iso-combinations): Remove "iso-" infix. Suggested by
Chong Yidong.
(window-min-size-1, window-size-fixed-1, window-min-delta-1)
(window-max-delta-1, window-resize, window--resize-siblings)
(window--resize-this-window, adjust-window-trailing-edge)
(split-window, balance-windows-1)
(shrink-window-if-larger-than-buffer):
* calendar/calendar.el (calendar-generate-window):
* help.el (resize-temp-buffer-window): Adjust callers
accordingly.
* windows.texi (Windows and Frames): Remove "iso-" infix from
documentation of window-iso-combined-p.
Diffstat (limited to 'lisp/help.el')
| -rw-r--r-- | lisp/help.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 508a4e3262c..bc3d863f357 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -1003,7 +1003,7 @@ than `window-min-height'. Do nothing if the selected window is | |||
| 1003 | not vertically combined or some of its contents are scrolled out | 1003 | not vertically combined or some of its contents are scrolled out |
| 1004 | of view." | 1004 | of view." |
| 1005 | (when (and (pos-visible-in-window-p (point-min)) | 1005 | (when (and (pos-visible-in-window-p (point-min)) |
| 1006 | (window-iso-combined-p)) | 1006 | (window-combined-p)) |
| 1007 | (fit-window-to-buffer | 1007 | (fit-window-to-buffer |
| 1008 | nil | 1008 | nil |
| 1009 | (if (functionp temp-buffer-max-height) | 1009 | (if (functionp temp-buffer-max-height) |