diff options
| author | Eli Zaretskii | 2023-11-18 06:07:47 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2023-11-18 06:07:47 -0500 |
| commit | f99de40efc022da46bac3faf168ca2d23e41e286 (patch) | |
| tree | f23400e74978467ec636f6158a44b4687d62d9d4 | |
| parent | 457b5e23fa1ec68b8c30a4a81e59a41ddc4d62d9 (diff) | |
| parent | 32a32853ce914fd10770b463e8109e288047a211 (diff) | |
| download | emacs-f99de40efc022da46bac3faf168ca2d23e41e286.tar.gz emacs-f99de40efc022da46bac3faf168ca2d23e41e286.zip | |
Merge from origin/emacs-29
32a32853ce9 Typofix in the doc/lispref/modes.texi
f98637b51b5 ; Fix 'add-face-text-property' shortdoc
3fff22eb20c Fix spell-checking email message with citations
| -rw-r--r-- | doc/lispref/modes.texi | 2 | ||||
| -rw-r--r-- | lisp/emacs-lisp/shortdoc.el | 2 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 130bc10cd59..8670807cbdf 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi | |||
| @@ -2692,7 +2692,7 @@ display in pixels, by multiplying the value of this variable by the | |||
| 2692 | value returned by @code{frame-char-width} (@pxref{Frame Font}), and | 2692 | value returned by @code{frame-char-width} (@pxref{Frame Font}), and |
| 2693 | then use the result to align header-line text using the | 2693 | then use the result to align header-line text using the |
| 2694 | @code{:align-to} display property spec (@pxref{Specified Space}) in | 2694 | @code{:align-to} display property spec (@pxref{Specified Space}) in |
| 2695 | pixels on the relevant parts of @code{header-line-frormat}. | 2695 | pixels on the relevant parts of @code{header-line-format}. |
| 2696 | @end defvar | 2696 | @end defvar |
| 2697 | 2697 | ||
| 2698 | @defun window-header-line-height &optional window | 2698 | @defun window-header-line-height &optional window |
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el index dbc061d8a70..1fa798beae1 100644 --- a/lisp/emacs-lisp/shortdoc.el +++ b/lisp/emacs-lisp/shortdoc.el | |||
| @@ -1388,7 +1388,7 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'), | |||
| 1388 | (set-text-properties | 1388 | (set-text-properties |
| 1389 | :no-eval (set-text-properties (point) (1+ (point)) '(face error))) | 1389 | :no-eval (set-text-properties (point) (1+ (point)) '(face error))) |
| 1390 | (add-face-text-property | 1390 | (add-face-text-property |
| 1391 | (add-face-text-property START END '(:foreground "green"))) | 1391 | :no-eval (add-face-text-property START END '(:foreground "green"))) |
| 1392 | (propertize | 1392 | (propertize |
| 1393 | :eval (propertize "foo" 'face 'italic 'mouse-face 'bold-italic)) | 1393 | :eval (propertize "foo" 'face 'italic 'mouse-face 'bold-italic)) |
| 1394 | "Searching for Text Properties" | 1394 | "Searching for Text Properties" |
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 9bd1135c5be..b71e85b0e37 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -3974,7 +3974,8 @@ You can bind this to the key C-c i in GNUS or mail by adding to | |||
| 3974 | (point-max))) | 3974 | (point-max))) |
| 3975 | (t (min (point-max) (funcall ispell-message-text-end)))))) | 3975 | (t (min (point-max) (funcall ispell-message-text-end)))))) |
| 3976 | (default-prefix ; Vanilla cite prefix (just used for cite-regexp) | 3976 | (default-prefix ; Vanilla cite prefix (just used for cite-regexp) |
| 3977 | (if (ispell-non-empty-string mail-yank-prefix) | 3977 | (if mail-yank-prefix |
| 3978 | (ispell-non-empty-string mail-yank-prefix) | ||
| 3978 | " \\|\t")) | 3979 | " \\|\t")) |
| 3979 | (cite-regexp ;Prefix of quoted text | 3980 | (cite-regexp ;Prefix of quoted text |
| 3980 | (cond | 3981 | (cond |