diff options
| author | Martin Rudalics | 2014-03-14 11:38:46 +0100 |
|---|---|---|
| committer | Martin Rudalics | 2014-03-14 11:38:46 +0100 |
| commit | cfd5e825ae51150889b3a5d1b46d617cdab85b23 (patch) | |
| tree | 8ba3f46a76a4a0ebb83f3ca7a37d66142ae265d3 /doc/lispref/display.texi | |
| parent | 56759cf12aeea9a51020ad19784d6ca6c55ab36e (diff) | |
| download | emacs-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.texi | 11 |
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{} |
| 1178 | This macro is similar to @code{with-output-to-temp-buffer}. | 1178 | This macro is similar to @code{with-output-to-temp-buffer}. Like that |
| 1179 | Like that construct, it executes @var{forms} while arranging to insert | 1179 | construct, it executes @var{forms} while arranging to insert any output |
| 1180 | any output they print into the buffer named @var{buffer-or-name}. | 1180 | they print into the buffer named @var{buffer-or-name} and displays the |
| 1181 | Finally, the buffer is displayed in some window, but not selected. | 1181 | buffer in some window. Unlike @code{with-output-to-temp-buffer}, |
| 1182 | Unlike @code{with-output-to-temp-buffer}, this does not switch to Help | 1182 | however, this makes the buffer current and does not switch to Help mode. |
| 1183 | mode. | ||
| 1184 | 1183 | ||
| 1185 | The argument @var{buffer-or-name} specifies the temporary buffer. | 1184 | The argument @var{buffer-or-name} specifies the temporary buffer. |
| 1186 | It can be either a buffer, which must already exist, or a string, | 1185 | It can be either a buffer, which must already exist, or a string, |