diff options
| author | Teemu Likonen <tlikonen@iki.fi> | 2020-08-16 20:13:23 +0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-08-22 09:23:26 -0300 |
| commit | 3512e2bc83b226a6fddff2940f3929b16ffea67c (patch) | |
| tree | c3d01afd9a1899d2ad1c9220344b3d0f99900abf /bindings/python/docs/source/threads.rst | |
| parent | d6f3694188e6101a2a4ab84e6d203d2d4dcc241a (diff) | |
Emacs: Fix notmuch-message-summary-face definition
Emacs face definition forms are either
((DISPLAY . PLIST)
(DISPLAY . PLIST))
or
((DISPLAY PLIST) ;For backward compatibility.
(DISPLAY PLIST))
Commit a2388bc56e55da5d5695816818274f8a84b0ed92 (2020-08-08) follows
neither of the correct formats. It defines:
`((((class color) (background light))
,@(and (>= emacs-major-version 27) '(:extend t))
(:background "#f0f0f0"))
(((class color) (background dark))
,@(and (>= emacs-major-version 27) '(:extend t))
(:background "#303030")))
which produces:
((DISPLAY
:extend t (:background "#f0f0f0"))
(DISPLAY
:extend t (:background "#303030")))
And that is wrong format.
This change fixes the face definition form to produce:
((DISPLAY
:extend t :background "#f0f0f0")
(DISPLAY
:extend t :background "#303030"))
which follows the (DISPLAY . PLIST) format (see above).
Diffstat (limited to 'bindings/python/docs/source/threads.rst')
0 files changed, 0 insertions, 0 deletions
