diff options
| author | Glenn Morris | 2021-03-12 08:47:41 -0800 |
|---|---|---|
| committer | Glenn Morris | 2021-03-12 08:47:41 -0800 |
| commit | 74c389526f93cc4eded6759ffd3e1cfa4d429d6f (patch) | |
| tree | b5904c644dc1701ed7214ce6e997d2252c25f2c5 /lisp | |
| parent | f7b7ecc4df7108da31625a3630cbbbdbec3abbd7 (diff) | |
| parent | 2c5f21541957e2420e54ab2a70883140811708f7 (diff) | |
| download | emacs-74c389526f93cc4eded6759ffd3e1cfa4d429d6f.tar.gz emacs-74c389526f93cc4eded6759ffd3e1cfa4d429d6f.zip | |
Merge from origin/emacs-27
2c5f215419 Avoid crashes in Mew due to corrupted tool-bar label
7a23915618 * lisp/tooltip.el (tooltip): Doc fix for GTK.
c4bbe02cc4 * lisp/help.el (help-for-help-internal): Doc fix; use impe...
# Conflicts:
# lisp/help.el
# lisp/tooltip.el
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/help.el | 2 | ||||
| -rw-r--r-- | lisp/tooltip.el | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 79d8296cfed..d4be9aa7200 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -210,7 +210,7 @@ Do not call this in the scope of `with-help-window'." | |||
| 210 | \\[describe-key] KEYS Display the full documentation for the key sequence. | 210 | \\[describe-key] KEYS Display the full documentation for the key sequence. |
| 211 | \\[Info-goto-emacs-key-command-node] KEYS Show the Emacs manual's section for the command bound to KEYS. | 211 | \\[Info-goto-emacs-key-command-node] KEYS Show the Emacs manual's section for the command bound to KEYS. |
| 212 | \\[view-lossage] Show last 300 input keystrokes (lossage). | 212 | \\[view-lossage] Show last 300 input keystrokes (lossage). |
| 213 | \\[describe-language-environment] LANG-ENV Describes a specific language environment, or RET for current. | 213 | \\[describe-language-environment] LANG-ENV Describe a specific language environment, or RET for current. |
| 214 | \\[describe-mode] Display documentation of current minor modes and current major mode, | 214 | \\[describe-mode] Display documentation of current minor modes and current major mode, |
| 215 | including their special commands. | 215 | including their special commands. |
| 216 | \\[view-emacs-news] Display news of recent Emacs changes. | 216 | \\[view-emacs-news] Display news of recent Emacs changes. |
diff --git a/lisp/tooltip.el b/lisp/tooltip.el index af3b86bba71..293c0343956 100644 --- a/lisp/tooltip.el +++ b/lisp/tooltip.el | |||
| @@ -131,7 +131,10 @@ of the `tooltip' face are used instead." | |||
| 131 | :inherit variable-pitch) | 131 | :inherit variable-pitch) |
| 132 | (t | 132 | (t |
| 133 | :inherit variable-pitch)) | 133 | :inherit variable-pitch)) |
| 134 | "Face for tooltips." | 134 | "Face for tooltips. |
| 135 | |||
| 136 | When using the GTK toolkit, this face will only be used if | ||
| 137 | `x-gtk-use-system-tooltips' is non-nil." | ||
| 135 | :group 'basic-faces) | 138 | :group 'basic-faces) |
| 136 | 139 | ||
| 137 | (defcustom tooltip-use-echo-area nil | 140 | (defcustom tooltip-use-echo-area nil |