diff options
| author | Eli Zaretskii | 2024-04-13 14:20:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-04-13 14:20:16 +0300 |
| commit | 952f20fabe76c087aa96645389cfd4786fc95380 (patch) | |
| tree | f8f9c44e9723d1d8db7a663ce63605741e680e28 | |
| parent | 5734047b812639c06c90eb3baf82ff502db59fb5 (diff) | |
| download | emacs-952f20fabe76c087aa96645389cfd4786fc95380.tar.gz emacs-952f20fabe76c087aa96645389cfd4786fc95380.zip | |
; Fix documentation of last change.
* etc/NEWS:
* doc/lispref/display.texi (Other Display Specs):
* doc/lispref/text.texi (Special Properties): Fix last changes.
| -rw-r--r-- | doc/lispref/display.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 11 | ||||
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | src/window.c | 2 |
4 files changed, 11 insertions, 9 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index fd083083fd2..fba15578f4f 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -5502,7 +5502,7 @@ colors are to be used for the bitmap display. @xref{Fringe Bitmaps}, | |||
| 5502 | for the details. | 5502 | for the details. |
| 5503 | 5503 | ||
| 5504 | It also possible to add context help for fringe bitmaps through the | 5504 | It also possible to add context help for fringe bitmaps through the |
| 5505 | @code{show-help-function} mechanism by using @code{left-fringe-help} or | 5505 | @code{show-help-function} mechanism by using @code{left-fringe-help} and |
| 5506 | @code{right-fringe-help} text properties (@pxref{Special Properties}). | 5506 | @code{right-fringe-help} text properties (@pxref{Special Properties}). |
| 5507 | 5507 | ||
| 5508 | @item (space-width @var{factor}) | 5508 | @item (space-width @var{factor}) |
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 3db82df49b3..0d247cd9a07 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -3666,11 +3666,12 @@ through @code{substitute-command-keys}. | |||
| 3666 | @item left-fringe-help | 3666 | @item left-fringe-help |
| 3667 | @itemx right-fringe-help | 3667 | @itemx right-fringe-help |
| 3668 | @cindex help-echo text on fringes | 3668 | @cindex help-echo text on fringes |
| 3669 | If any visible text of a buffer line has @code{left-fringe-help} or | 3669 | If any visible text of a screen line has the @code{left-fringe-help} or |
| 3670 | @code{right-fringe-help} string text property defined on it, then the | 3670 | @code{right-fringe-help} text property whose value is a string, then |
| 3671 | string will be displayed for a corresponding line's fringe through | 3671 | that string will be displayed when the mouse pointer hovers over the |
| 3672 | @code{show-help-function} (@pxref{Help display}). This is useful when | 3672 | corresponding line's fringe through @code{show-help-function} |
| 3673 | used together with fringe cursors and bitmaps (@pxref{Fringes}). | 3673 | (@pxref{Help display}). This is useful when used together with fringe |
| 3674 | cursors and bitmaps (@pxref{Fringes}). | ||
| 3674 | 3675 | ||
| 3675 | @item keymap | 3676 | @item keymap |
| 3676 | @cindex keymap of character | 3677 | @cindex keymap of character |
| @@ -1850,8 +1850,9 @@ the Info node "(elisp) Handling Errors". | |||
| 1850 | +++ | 1850 | +++ |
| 1851 | ** Tooltips on fringes. | 1851 | ** Tooltips on fringes. |
| 1852 | It is now possible to provide tooltips on fringes by adding special text | 1852 | It is now possible to provide tooltips on fringes by adding special text |
| 1853 | properties. See the "Special Properties" Info node in the Emacs Lisp | 1853 | properties 'left-fringe-help' and 'right-fringe-help'. See the "Special |
| 1854 | Reference Manual. | 1854 | Properties" Info node in the Emacs Lisp Reference Manual for more |
| 1855 | details. | ||
| 1855 | 1856 | ||
| 1856 | +++ | 1857 | +++ |
| 1857 | ** New 'pop-up-frames' action alist entry for 'display-buffer'. | 1858 | ** New 'pop-up-frames' action alist entry for 'display-buffer'. |
diff --git a/src/window.c b/src/window.c index fe26311fbb2..0945b244319 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -5407,13 +5407,13 @@ shrink_mini_window (struct window *w) | |||
| 5407 | 5407 | ||
| 5408 | eassert (MINI_WINDOW_P (w)); | 5408 | eassert (MINI_WINDOW_P (w)); |
| 5409 | 5409 | ||
| 5410 | FRAME_WINDOWS_FROZEN (f) = false; | ||
| 5410 | if (delta > 0) | 5411 | if (delta > 0) |
| 5411 | { | 5412 | { |
| 5412 | Lisp_Object root = FRAME_ROOT_WINDOW (f); | 5413 | Lisp_Object root = FRAME_ROOT_WINDOW (f); |
| 5413 | struct window *r = XWINDOW (root); | 5414 | struct window *r = XWINDOW (root); |
| 5414 | Lisp_Object grow; | 5415 | Lisp_Object grow; |
| 5415 | 5416 | ||
| 5416 | FRAME_WINDOWS_FROZEN (f) = false; | ||
| 5417 | grow = call3 (Qwindow__resize_root_window_vertically, | 5417 | grow = call3 (Qwindow__resize_root_window_vertically, |
| 5418 | root, make_fixnum (delta), Qt); | 5418 | root, make_fixnum (delta), Qt); |
| 5419 | 5419 | ||