[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#35481: 25.2; table.el should use 'font-lock-face' instead of 'face'
From: |
Lars Ingebrigtsen |
Subject: |
bug#35481: 25.2; table.el should use 'font-lock-face' instead of 'face' |
Date: |
Wed, 30 Oct 2019 20:44:14 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) |
Sebastian Urban <mrsebastianurban@gmail.com> writes:
> In short "table.el" uses text property 'face' (table-cell) which causes
> losing of cell highlight when user switches from modes like "Text" or
> "Fundamental" to modes that use "Font lock", like "Outline". Also when
> user switches back, 'face' is not applied immediately in every cell, but
> one by one, when cursor is moved from cell to cell.
>
> For both problems a solution seems to be an update to "table.el", which
> will change 'face' to 'font-lock-face'.
>
> If it helps, I found 4 places in code that probably need to be changed:
> - 'defface table-cell' at line 680,
> - 'defun table--put-cell-face-property' at line 5172,
> - 'defun table--remove-cell-properties' at line 5189,
> - 'defun table--update-cell-face' at line 5209.
The patch below does this, but I'm not sure it's right. When we're
using font-lock-face instead of face, then things work as normal when
we're using global-font-lock-mode, but if that's off, then we won't get
any faces at all.
Which would be bad.
I grepped around, but other modes don't seem to care about that. But I
guess it's somewhat unusual for a minor mode to do stuff like this?
I think putting both font-lock-face and face on the text would do the
trick here, but is that the way to go?
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index 839df035d2..92aaa46ad6 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -5151,7 +5151,7 @@ table--put-cell-indicator-property
(defun table--put-cell-face-property (beg end &optional object)
"Put cell face property."
- (put-text-property beg end 'face 'table-cell object))
+ (put-text-property beg end 'font-lock-face 'table-cell object))
(defun table--put-cell-keymap-property (beg end &optional object)
"Put cell keymap property."
@@ -5178,7 +5178,7 @@ table--remove-cell-properties
'table-cell nil
'table-justify nil
'table-valign nil
- 'face nil
+ 'font-lock-face nil
'rear-nonsticky nil
'cursor-sensor-functions nil
'keymap nil)
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- bug#35481: 25.2; table.el should use 'font-lock-face' instead of 'face',
Lars Ingebrigtsen <=