diff options
author | Glenn Morris <rgm@gnu.org> | 2020-09-09 07:51:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2020-09-09 07:51:12 -0700 |
commit | baade53cbedd57b3d010b148e25537ceaab8f9c0 (patch) | |
tree | f88fbb6be312b6f288ea001ff8541e7cbdbcf12f | |
parent | 4fa5bad400738c1c233b76e07a942186f4b507d5 (diff) | |
parent | 302f71e55da427529d3d0d62dd1511552aad9f7b (diff) | |
download | emacs-baade53cbedd57b3d010b148e25537ceaab8f9c0.tar.gz emacs-baade53cbedd57b3d010b148e25537ceaab8f9c0.tar.bz2 emacs-baade53cbedd57b3d010b148e25537ceaab8f9c0.zip |
Merge from origin/emacs-27
302f71e55d Fix help message with help-window-select
0fb3fc92b3 Remove obsolete "Wide Characters" section of Gnus manual
-rw-r--r-- | doc/misc/gnus.texi | 19 | ||||
-rw-r--r-- | lisp/help.el | 4 |
2 files changed, 2 insertions, 21 deletions
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 176411a64be..4a09eacdf15 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -842,7 +842,6 @@ Formatting Variables * Formatting Fonts:: Making the formatting look colorful and nice. * Positioning Point:: Moving point to a position after an operation. * Tabulation:: Tabulating your output. -* Wide Characters:: Dealing with wide characters. Image Enhancements @@ -22635,7 +22634,6 @@ lots of percentages everywhere. * Formatting Fonts:: Making the formatting look colorful and nice. * Positioning Point:: Moving point to a position after an operation. * Tabulation:: Tabulating your output. -* Wide Characters:: Dealing with wide characters. @end menu Currently Gnus uses the following formatting variables: @@ -22890,23 +22888,6 @@ This is the soft tabulator. 50 will be removed. This is the hard tabulator. -@node Wide Characters -@subsection Wide Characters - -Fixed width fonts in most countries have characters of the same width. -Some countries, however, use Latin characters mixed with wider -characters---most notable East Asian countries. - -The problem is that when formatting, Gnus assumes that if a string is 10 -characters wide, it'll be 10 Latin characters wide on the screen. In -these countries, that's not true. - -@vindex gnus-use-correct-string-widths -To help fix this, you can set @code{gnus-use-correct-string-widths} to -@code{t}. This makes buffer generation slower, but the results will be -prettier. The default value is @code{nil}. - - @node Window Layout @section Window Layout @cindex window layout diff --git a/lisp/help.el b/lisp/help.el index 45159d44779..729684af6b5 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -178,7 +178,7 @@ Do not call this in the scope of `with-help-window'." (if (same-window-p (buffer-name standard-output)) ;; Say how to scroll this window. (substitute-command-keys - "\\[scroll-up] to scroll the help.") + "\\[scroll-up-command] to scroll the help.") ;; Say how to scroll some other window. (substitute-command-keys "\\[scroll-other-window] to scroll the help.")))))))) @@ -1131,7 +1131,7 @@ window." ".") ((eq scroll 'other) ", \\[scroll-other-window] to scroll help.") - (scroll ", \\[scroll-up] to scroll help.")))) + (scroll ", \\[scroll-up-command] to scroll help.")))) (message "%s" (substitute-command-keys (concat quit-part scroll-part))))) |