aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/display.texi
diff options
context:
space:
mode:
authorMartin Rudalics2014-03-14 11:38:46 +0100
committerMartin Rudalics2014-03-14 11:38:46 +0100
commitcfd5e825ae51150889b3a5d1b46d617cdab85b23 (patch)
tree8ba3f46a76a4a0ebb83f3ca7a37d66142ae265d3 /doc/lispref/display.texi
parent56759cf12aeea9a51020ad19784d6ca6c55ab36e (diff)
downloademacs-cfd5e825ae51150889b3a5d1b46d617cdab85b23.tar.gz
emacs-cfd5e825ae51150889b3a5d1b46d617cdab85b23.zip
Document pixelwise frame resizing and fix related bug on Windows.
* w32term.c (x_set_window_size): When frame-resize-pixelwise is nil, always resize character wise to avoid potential loss of the mode line (Bug#16923 related). * display.texi (Temporary Displays): Say that with-temp-buffer-window makes its buffer current. * frames.texi (Size and Position): Describe new option `frame-resize-pixelwise'. Rewrite descriptions of `set-frame-size', `set-frame-height' and `set-frame-width'.
Diffstat (limited to 'doc/lispref/display.texi')
-rw-r--r--doc/lispref/display.texi11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index bffb840bfeb..5037f0c9032 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -1175,12 +1175,11 @@ is current, and the window it was displayed in is selected.
1175@end defvar 1175@end defvar
1176 1176
1177@defmac with-temp-buffer-window buffer-or-name action quit-function forms@dots{} 1177@defmac with-temp-buffer-window buffer-or-name action quit-function forms@dots{}
1178This macro is similar to @code{with-output-to-temp-buffer}. 1178This macro is similar to @code{with-output-to-temp-buffer}. Like that
1179Like that construct, it executes @var{forms} while arranging to insert 1179construct, it executes @var{forms} while arranging to insert any output
1180any output they print into the buffer named @var{buffer-or-name}. 1180they print into the buffer named @var{buffer-or-name} and displays the
1181Finally, the buffer is displayed in some window, but not selected. 1181buffer in some window. Unlike @code{with-output-to-temp-buffer},
1182Unlike @code{with-output-to-temp-buffer}, this does not switch to Help 1182however, this makes the buffer current and does not switch to Help mode.
1183mode.
1184 1183
1185The argument @var{buffer-or-name} specifies the temporary buffer. 1184The argument @var{buffer-or-name} specifies the temporary buffer.
1186It can be either a buffer, which must already exist, or a string, 1185It can be either a buffer, which must already exist, or a string,