notmuch/emacs
Teemu Likonen 3512e2bc83 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 a2388bc56e (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).
2020-08-22 09:23:26 -03:00
..
.gitignore emacs: build docstring (rsti) files 2018-12-08 08:49:31 -04:00
coolj.el emacs: Use 'and' instead of 'when' when the return value matters 2020-08-09 20:51:16 -03:00
make-deps.el emacs: Increase consistency of library headers 2020-08-09 21:14:36 -03:00
Makefile fix sum moar typos [build scripts, Makefiles] 2011-06-23 15:44:59 -07:00
Makefile.local emacs: Use makefile-gmake-mode in Makefile*s 2020-08-09 21:14:36 -03:00
notmuch-address.el emacs: Remove notmuch-setq-local 2020-08-09 21:15:27 -03:00
notmuch-company.el emacs: Remove notmuch-setq-local 2020-08-09 21:15:27 -03:00
notmuch-compat.el emacs: Remove notmuch-read-char-choice 2020-08-09 21:15:54 -03:00
notmuch-crypto.el Fix typos 2020-08-09 21:14:36 -03:00
notmuch-draft.el emacs: Use pop-to-buffer-same-window rather than switch-to-buffer 2020-08-22 09:11:06 -03:00
notmuch-emacs-mua notmuch-emacs-mua: add --hello parameter 2016-11-26 08:15:11 -04:00
notmuch-emacs-mua.desktop emacs: add keywords to notmuch-emacs-mua.desktop 2019-06-29 21:06:18 +02:00
notmuch-hello.el emacs: Use pop-to-buffer-same-window rather than switch-to-buffer 2020-08-22 09:11:06 -03:00
notmuch-jump.el emacs: Autoload notmuch-jump using an autoload cookie 2020-08-09 21:14:36 -03:00
notmuch-lib.el emacs: Use new advice mechanism do advice mm-shr 2020-08-09 21:17:39 -03:00
notmuch-logo.png emacs: Add notmuch-hello.el, a friendly frontend to notmuch 2010-04-23 12:50:18 -07:00
notmuch-maildir-fcc.el emacs: Remove notmuch-read-char-choice 2020-08-09 21:15:54 -03:00
notmuch-message.el emacs: Shorten long lines 2020-08-09 19:48:36 -03:00
notmuch-mua.el emacs: Drop old advices that were only need for Emacs 23 2020-08-09 21:16:12 -03:00
notmuch-parser.el emacs: Various cosmetic changes 2020-08-09 21:14:36 -03:00
notmuch-pkg.el.tmpl NEWS: At least Emacs 25.1 is required now 2020-08-09 21:14:36 -03:00
notmuch-print.el emacs: Increase consistency of library headers 2020-08-09 21:14:36 -03:00
notmuch-query.el emacs: Improve doc-strings 2020-08-09 21:14:36 -03:00
notmuch-show.el emacs: Use pop-to-buffer-same-window rather than switch-to-buffer 2020-08-22 09:11:06 -03:00
notmuch-tag.el emacs: Add end-of-file line to libraries that lack it 2020-08-09 21:14:36 -03:00
notmuch-tree.el emacs: Use pop-to-buffer-same-window rather than switch-to-buffer 2020-08-22 09:11:06 -03:00
notmuch-version.el.tmpl emacs: Increase consistency of library headers 2020-08-09 21:14:36 -03:00
notmuch-wash.el emacs: Use 'when' instead of 'if' when there is no ELSE part 2020-08-09 20:52:34 -03:00
notmuch.el Emacs: Fix notmuch-message-summary-face definition 2020-08-22 09:23:26 -03:00
rstdoc.el emacs: Provide 'rstdoc' feature at end of file 2020-08-09 21:14:36 -03:00
rstdoc.rsti emacs: initial version of rstdoc.el 2018-12-08 08:45:48 -04:00