diff options
| author | Eli Zaretskii <eliz@gnu.org> | 2019-11-27 18:19:30 +0200 |
|---|---|---|
| committer | Eli Zaretskii <eliz@gnu.org> | 2019-11-27 18:19:30 +0200 |
| commit | 2435f811b946ec54ab1da90aded52caddef977c8 (patch) | |
| tree | 5af654daacdf8d4693a36b24e6e554d4a1f32935 /lisp/help-fns.el | |
| parent | 39b3bc0082050af08e19d80059ddca66355559ce (diff) | |
| download | emacs-2435f811b946ec54ab1da90aded52caddef977c8.tar.gz | |
Make some anonymous faces extend to EOL
* lisp/vc/log-edit.el (log-edit-font-lock-keywords):
* lisp/mpc.el (mpc-separator):
* lisp/help.el (describe-key):
* lisp/help-fns.el (describe-symbol): Make the anonymous faces
extend to EOL.
Diffstat (limited to 'lisp/help-fns.el')
| -rw-r--r-- | lisp/help-fns.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 14dea7de9b7..40c57d05be9 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -1463,7 +1463,8 @@ current buffer and the selected frame, respectively." (progn (skip-chars-backward " \t\n") (point))) (insert "\n\n" (eval-when-compile - (propertize "\n" 'face '(:height 0.1 :inverse-video t))) + (propertize "\n" 'face + '(:height 0.1 :inverse-video t :extend t))) "\n") (when name (insert (symbol-name symbol) |
