aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-04-13 14:20:16 +0300
committerEli Zaretskii2024-04-13 14:20:16 +0300
commit952f20fabe76c087aa96645389cfd4786fc95380 (patch)
treef8f9c44e9723d1d8db7a663ce63605741e680e28
parent5734047b812639c06c90eb3baf82ff502db59fb5 (diff)
downloademacs-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.texi2
-rw-r--r--doc/lispref/text.texi11
-rw-r--r--etc/NEWS5
-rw-r--r--src/window.c2
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},
5502for the details. 5502for the details.
5503 5503
5504It also possible to add context help for fringe bitmaps through the 5504It 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
3669If any visible text of a buffer line has @code{left-fringe-help} or 3669If 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
3671string will be displayed for a corresponding line's fringe through 3671that string will be displayed when the mouse pointer hovers over the
3672@code{show-help-function} (@pxref{Help display}). This is useful when 3672corresponding line's fringe through @code{show-help-function}
3673used together with fringe cursors and bitmaps (@pxref{Fringes}). 3673(@pxref{Help display}). This is useful when used together with fringe
3674cursors and bitmaps (@pxref{Fringes}).
3674 3675
3675@item keymap 3676@item keymap
3676@cindex keymap of character 3677@cindex keymap of character
diff --git a/etc/NEWS b/etc/NEWS
index 97cac373750..51ecd886593 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1850,8 +1850,9 @@ the Info node "(elisp) Handling Errors".
1850+++ 1850+++
1851** Tooltips on fringes. 1851** Tooltips on fringes.
1852It is now possible to provide tooltips on fringes by adding special text 1852It is now possible to provide tooltips on fringes by adding special text
1853properties. See the "Special Properties" Info node in the Emacs Lisp 1853properties 'left-fringe-help' and 'right-fringe-help'. See the "Special
1854Reference Manual. 1854Properties" Info node in the Emacs Lisp Reference Manual for more
1855details.
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