diff options
| author | Eli Zaretskii | 2024-05-25 13:22:45 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2024-05-25 13:22:45 +0300 |
| commit | 1bf658366220ce1019721f24d96ef8f82bd18cff (patch) | |
| tree | 696a41c4425f3636ced680f5989706541d91c7e9 | |
| parent | 3647645e94856344696768bef590b49a24c7ac52 (diff) | |
| download | emacs-1bf658366220ce1019721f24d96ef8f82bd18cff.tar.gz emacs-1bf658366220ce1019721f24d96ef8f82bd18cff.zip | |
Improve documentation of 'no-special-glyphs' frame parameter
* doc/lispref/frames.texi (Layout Parameters): Document
limitations of support for 'no-special-glyphs' frame parameter.
(Bug#71163)
* doc/lispref/display.texi (Truncation): Update for when
'fringe-mode' is off.
| -rw-r--r-- | doc/lispref/display.texi | 3 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 14 |
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index 869bf15a40a..ef44c8d80f5 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -148,7 +148,8 @@ boundary. @xref{Filling}. | |||
| 148 | 148 | ||
| 149 | On a graphical display, tiny arrow images in the window fringes | 149 | On a graphical display, tiny arrow images in the window fringes |
| 150 | indicate truncated and continued lines (@pxref{Fringes}). On a text | 150 | indicate truncated and continued lines (@pxref{Fringes}). On a text |
| 151 | terminal, a @samp{$} in the rightmost column of the window indicates | 151 | terminal, and on a graphical display when @code{fringe-mode} was |
| 152 | turned off, a @samp{$} in the rightmost column of the window indicates | ||
| 152 | truncation; a @samp{\} on the rightmost column indicates a line that | 153 | truncation; a @samp{\} on the rightmost column indicates a line that |
| 153 | wraps. (The display table can specify alternate characters to use | 154 | wraps. (The display table can specify alternate characters to use |
| 154 | for this; @pxref{Display Tables}). | 155 | for this; @pxref{Display Tables}). |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index edc080153d6..fe5745a85ab 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -1928,10 +1928,16 @@ integer). @xref{Line Height}, for more information. | |||
| 1928 | @vindex no-special-glyphs@r{, a frame parameter} | 1928 | @vindex no-special-glyphs@r{, a frame parameter} |
| 1929 | @item no-special-glyphs | 1929 | @item no-special-glyphs |
| 1930 | If this is non-@code{nil}, it suppresses the display of any truncation | 1930 | If this is non-@code{nil}, it suppresses the display of any truncation |
| 1931 | and continuation glyphs (@pxref{Truncation}) for all buffers displayed | 1931 | (@pxref{Truncation}) and continuation glyphs for all the buffers |
| 1932 | by this frame. This is useful to eliminate such glyphs when fitting a | 1932 | displayed by this frame. This is useful to eliminate such glyphs when |
| 1933 | frame to its buffer via @code{fit-frame-to-buffer} (@pxref{Resizing | 1933 | fitting a frame to its buffer via @code{fit-frame-to-buffer} |
| 1934 | Windows}). | 1934 | (@pxref{Resizing Windows}). This frame parameter has effect only for |
| 1935 | GUI frames shown on graphical displays, and only if the fringes are | ||
| 1936 | disabled. This parameter is intended as a purely-presentation | ||
| 1937 | feature, and in particular should not be used for frames where the | ||
| 1938 | user can interactively insert text, or more generally where the cursor | ||
| 1939 | is shown. A notable example of frames where this is used is tooltip | ||
| 1940 | frames (@pxref{Tooltips}). | ||
| 1935 | @end table | 1941 | @end table |
| 1936 | 1942 | ||
| 1937 | 1943 | ||