diff options
| author | Eli Zaretskii | 2019-11-27 18:19:30 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-11-27 18:19:30 +0200 |
| commit | 2435f811b946ec54ab1da90aded52caddef977c8 (patch) | |
| tree | 5af654daacdf8d4693a36b24e6e554d4a1f32935 | |
| parent | 39b3bc0082050af08e19d80059ddca66355559ce (diff) | |
| download | emacs-2435f811b946ec54ab1da90aded52caddef977c8.tar.gz emacs-2435f811b946ec54ab1da90aded52caddef977c8.zip | |
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.
| -rw-r--r-- | lisp/help-fns.el | 3 | ||||
| -rw-r--r-- | lisp/help.el | 3 | ||||
| -rw-r--r-- | lisp/mpc.el | 2 | ||||
| -rw-r--r-- | lisp/vc/log-edit.el | 2 |
4 files changed, 6 insertions, 4 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." | |||
| 1463 | (progn (skip-chars-backward " \t\n") (point))) | 1463 | (progn (skip-chars-backward " \t\n") (point))) |
| 1464 | (insert "\n\n" | 1464 | (insert "\n\n" |
| 1465 | (eval-when-compile | 1465 | (eval-when-compile |
| 1466 | (propertize "\n" 'face '(:height 0.1 :inverse-video t))) | 1466 | (propertize "\n" 'face |
| 1467 | '(:height 0.1 :inverse-video t :extend t))) | ||
| 1467 | "\n") | 1468 | "\n") |
| 1468 | (when name | 1469 | (when name |
| 1469 | (insert (symbol-name symbol) | 1470 | (insert (symbol-name symbol) |
diff --git a/lisp/help.el b/lisp/help.el index c4402ece4e5..604a365957c 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -869,7 +869,8 @@ current buffer." | |||
| 869 | (insert "\n\n" | 869 | (insert "\n\n" |
| 870 | ;; FIXME: Can't use eval-when-compile because purified | 870 | ;; FIXME: Can't use eval-when-compile because purified |
| 871 | ;; strings lose their text properties :-( | 871 | ;; strings lose their text properties :-( |
| 872 | (propertize "\n" 'face '(:height 0.1 :inverse-video t)) | 872 | (propertize "\n" 'face |
| 873 | '(:height 0.1 :inverse-video t :extend t)) | ||
| 873 | "\n"))) | 874 | "\n"))) |
| 874 | 875 | ||
| 875 | (princ brief-desc) | 876 | (princ brief-desc) |
diff --git a/lisp/mpc.el b/lisp/mpc.el index 8e557ed2b35..c39257937bf 100644 --- a/lisp/mpc.el +++ b/lisp/mpc.el | |||
| @@ -1606,7 +1606,7 @@ when constructing the set of constraints." | |||
| 1606 | (make-overlay (point) (point))) | 1606 | (make-overlay (point) (point))) |
| 1607 | (overlay-put mpc-separator-ol 'after-string | 1607 | (overlay-put mpc-separator-ol 'after-string |
| 1608 | (propertize "\n" | 1608 | (propertize "\n" |
| 1609 | 'face '(:height 0.05 :inverse-video t)))) | 1609 | 'face '(:height 0.05 :inverse-video t :extend t)))) |
| 1610 | (goto-char (point-min)) | 1610 | (goto-char (point-min)) |
| 1611 | (forward-line 1) | 1611 | (forward-line 1) |
| 1612 | (while | 1612 | (while |
diff --git a/lisp/vc/log-edit.el b/lisp/vc/log-edit.el index 8d47d66ac38..03eccf3815c 100644 --- a/lisp/vc/log-edit.el +++ b/lisp/vc/log-edit.el | |||
| @@ -384,7 +384,7 @@ The first subexpression is the actual text of the field.") | |||
| 384 | nil lax)) | 384 | nil lax)) |
| 385 | ("^\n" | 385 | ("^\n" |
| 386 | (progn (goto-char (match-end 0)) (1+ (match-end 0))) nil | 386 | (progn (goto-char (match-end 0)) (1+ (match-end 0))) nil |
| 387 | (0 '(:height 0.1 :inverse-video t)))) | 387 | (0 '(:height 0.1 :inverse-video t :extend t)))) |
| 388 | (log-edit--match-first-line (0 'log-edit-summary)))) | 388 | (log-edit--match-first-line (0 'log-edit-summary)))) |
| 389 | 389 | ||
| 390 | (defvar log-edit-font-lock-gnu-style nil | 390 | (defvar log-edit-font-lock-gnu-style nil |