diff options
| author | Glenn Morris | 2020-09-09 07:51:12 -0700 |
|---|---|---|
| committer | Glenn Morris | 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.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 | |||
| 842 | * Formatting Fonts:: Making the formatting look colorful and nice. | 842 | * Formatting Fonts:: Making the formatting look colorful and nice. |
| 843 | * Positioning Point:: Moving point to a position after an operation. | 843 | * Positioning Point:: Moving point to a position after an operation. |
| 844 | * Tabulation:: Tabulating your output. | 844 | * Tabulation:: Tabulating your output. |
| 845 | * Wide Characters:: Dealing with wide characters. | ||
| 846 | 845 | ||
| 847 | Image Enhancements | 846 | Image Enhancements |
| 848 | 847 | ||
| @@ -22635,7 +22634,6 @@ lots of percentages everywhere. | |||
| 22635 | * Formatting Fonts:: Making the formatting look colorful and nice. | 22634 | * Formatting Fonts:: Making the formatting look colorful and nice. |
| 22636 | * Positioning Point:: Moving point to a position after an operation. | 22635 | * Positioning Point:: Moving point to a position after an operation. |
| 22637 | * Tabulation:: Tabulating your output. | 22636 | * Tabulation:: Tabulating your output. |
| 22638 | * Wide Characters:: Dealing with wide characters. | ||
| 22639 | @end menu | 22637 | @end menu |
| 22640 | 22638 | ||
| 22641 | Currently Gnus uses the following formatting variables: | 22639 | Currently Gnus uses the following formatting variables: |
| @@ -22890,23 +22888,6 @@ This is the soft tabulator. | |||
| 22890 | 50 will be removed. This is the hard tabulator. | 22888 | 50 will be removed. This is the hard tabulator. |
| 22891 | 22889 | ||
| 22892 | 22890 | ||
| 22893 | @node Wide Characters | ||
| 22894 | @subsection Wide Characters | ||
| 22895 | |||
| 22896 | Fixed width fonts in most countries have characters of the same width. | ||
| 22897 | Some countries, however, use Latin characters mixed with wider | ||
| 22898 | characters---most notable East Asian countries. | ||
| 22899 | |||
| 22900 | The problem is that when formatting, Gnus assumes that if a string is 10 | ||
| 22901 | characters wide, it'll be 10 Latin characters wide on the screen. In | ||
| 22902 | these countries, that's not true. | ||
| 22903 | |||
| 22904 | @vindex gnus-use-correct-string-widths | ||
| 22905 | To help fix this, you can set @code{gnus-use-correct-string-widths} to | ||
| 22906 | @code{t}. This makes buffer generation slower, but the results will be | ||
| 22907 | prettier. The default value is @code{nil}. | ||
| 22908 | |||
| 22909 | |||
| 22910 | @node Window Layout | 22891 | @node Window Layout |
| 22911 | @section Window Layout | 22892 | @section Window Layout |
| 22912 | @cindex window layout | 22893 | @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'." | |||
| 178 | (if (same-window-p (buffer-name standard-output)) | 178 | (if (same-window-p (buffer-name standard-output)) |
| 179 | ;; Say how to scroll this window. | 179 | ;; Say how to scroll this window. |
| 180 | (substitute-command-keys | 180 | (substitute-command-keys |
| 181 | "\\[scroll-up] to scroll the help.") | 181 | "\\[scroll-up-command] to scroll the help.") |
| 182 | ;; Say how to scroll some other window. | 182 | ;; Say how to scroll some other window. |
| 183 | (substitute-command-keys | 183 | (substitute-command-keys |
| 184 | "\\[scroll-other-window] to scroll the help.")))))))) | 184 | "\\[scroll-other-window] to scroll the help.")))))))) |
| @@ -1131,7 +1131,7 @@ window." | |||
| 1131 | ".") | 1131 | ".") |
| 1132 | ((eq scroll 'other) | 1132 | ((eq scroll 'other) |
| 1133 | ", \\[scroll-other-window] to scroll help.") | 1133 | ", \\[scroll-other-window] to scroll help.") |
| 1134 | (scroll ", \\[scroll-up] to scroll help.")))) | 1134 | (scroll ", \\[scroll-up-command] to scroll help.")))) |
| 1135 | (message "%s" | 1135 | (message "%s" |
| 1136 | (substitute-command-keys (concat quit-part scroll-part))))) | 1136 | (substitute-command-keys (concat quit-part scroll-part))))) |
| 1137 | 1137 | ||