branch: externals/doric-themes
commit decf862fff237455ee607706257fd0c7ba59924d
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>

    Sort the lines passed to custom-theme-set-variables
---
 doric-themes.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doric-themes.el b/doric-themes.el
index 3865ce9931..c689a4c7ed 100644
--- a/doric-themes.el
+++ b/doric-themes.el
@@ -1679,12 +1679,12 @@ default to a generic text that mentions the 
BACKGROUND-MODE."
               `(whitespace-tab ((t :foreground ,bg-shadow-intense)))))
            (custom-theme-set-variables
             ',name
+            '(diff-font-lock-syntax nil)
             '(elisp-fontify-semantically nil)
-            `(flymake-error-bitmap '(flymake-double-exclamation-mark 
doric-themes-prominent-error))
-            `(flymake-warning-bitmap '(exclamation-mark 
doric-themes-prominent-warning))
-            `(flymake-note-bitmap '(exclamation-mark 
doric-themes-prominent-note))
             '(frame-background-mode ',background-mode)
-            '(diff-font-lock-syntax nil))
+            `(flymake-note-bitmap '(exclamation-mark 
doric-themes-prominent-note))
+            `(flymake-warning-bitmap '(exclamation-mark 
doric-themes-prominent-warning))
+            `(flymake-error-bitmap '(flymake-double-exclamation-mark 
doric-themes-prominent-error)))
            ,@(unless theme-exists-p
                (list `(provide-theme ',name)))))
     (error "No palette found for `%s'" name)))

Reply via email to