]> git.eshelyaron.com Git - emacs.git/commitdiff
Simplify syntax of shortdoc face specs
authorBasil L. Contovounesios <contovob@tcd.ie>
Tue, 20 Oct 2020 16:28:26 +0000 (17:28 +0100)
committerBasil L. Contovounesios <contovob@tcd.ie>
Tue, 20 Oct 2020 16:31:09 +0000 (17:31 +0100)
* lisp/emacs-lisp/shortdoc.el: Remove unused dependency.
(shortdoc-section, shortdoc-example): Use newer (DISPLAY . PLIST)
face spec syntax.

lisp/emacs-lisp/shortdoc.el

index f6309c7652e79ebe1d53cea5d73d95084ce854ab..7ae6d53a21be4cf0bedfb5b1bdd699eae87dbc52 100644 (file)
@@ -24,7 +24,6 @@
 
 ;;; Code:
 
-(require 'macroexp)
 (require 'seq)
 (eval-when-compile (require 'cl-lib))
 
 
 (defface shortdoc-section
   '((((class color) (background dark))
-     (:inherit variable-pitch
-               :background "#303030" :extend t))
+     :inherit variable-pitch :background "#303030" :extend t)
     (((class color) (background light))
-     (:inherit variable-pitch
-               :background "#f0f0f0" :extend t)))
+     :inherit variable-pitch :background "#f0f0f0" :extend t))
   "Face used for a section.")
 
 (defface shortdoc-example
   '((((class color) (background dark))
-     (:background "#202020" :extend t))
+     :background "#202020" :extend t)
     (((class color) (background light))
-     (:background "#e8e8e8" :extend t)))
+     :background "#e8e8e8" :extend t))
   "Face used for examples.")
 
 (defvar shortdoc--groups nil)