branch: elpa/alect-themes
commit 032dfebede02d44c167328f95c7ea5846d340e3c
Author: Alex Kost <[email protected]>
Commit: Alex Kost <[email protected]>
Update version to 0.11 and fix compilation warnings
---
alect-black-alt-theme.el | 2 ++
alect-black-theme.el | 2 ++
alect-dark-alt-theme.el | 2 ++
alect-dark-theme.el | 2 ++
alect-light-alt-theme.el | 2 ++
alect-light-theme.el | 2 ++
alect-themes.el | 6 +++---
7 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/alect-black-alt-theme.el b/alect-black-alt-theme.el
index 23b7747a7b7..4e94a617cfd 100644
--- a/alect-black-alt-theme.el
+++ b/alect-black-alt-theme.el
@@ -1,3 +1,5 @@
+;;; alect-black-alt-theme.el --- Black theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme black invert)
diff --git a/alect-black-theme.el b/alect-black-theme.el
index ae48993bacc..b76c3b82d25 100644
--- a/alect-black-theme.el
+++ b/alect-black-theme.el
@@ -1,3 +1,5 @@
+;;; alect-black-theme.el --- Black theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme black)
diff --git a/alect-dark-alt-theme.el b/alect-dark-alt-theme.el
index b725d9817f9..e175a6a6c66 100644
--- a/alect-dark-alt-theme.el
+++ b/alect-dark-alt-theme.el
@@ -1,3 +1,5 @@
+;;; alect-dark-alt-theme.el --- Dark theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme dark invert)
diff --git a/alect-dark-theme.el b/alect-dark-theme.el
index 09805034c0d..074d186aff4 100644
--- a/alect-dark-theme.el
+++ b/alect-dark-theme.el
@@ -1,3 +1,5 @@
+;;; alect-dark-theme.el --- Dark theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme dark)
diff --git a/alect-light-alt-theme.el b/alect-light-alt-theme.el
index cd7ee2a286d..dfd3c0df0e2 100644
--- a/alect-light-alt-theme.el
+++ b/alect-light-alt-theme.el
@@ -1,3 +1,5 @@
+;;; alect-light-alt-theme.el --- Light theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme light invert)
diff --git a/alect-light-theme.el b/alect-light-theme.el
index 625b8b8622a..1b1bf587a51 100644
--- a/alect-light-theme.el
+++ b/alect-light-theme.el
@@ -1,3 +1,5 @@
+;;; alect-light-theme.el --- Light theme for Emacs 24 or later -*-
lexical-binding: t -*-
+
(require 'alect-themes)
(alect-create-theme light)
diff --git a/alect-themes.el b/alect-themes.el
index 0a53c619a6b..776c3f1446c 100644
--- a/alect-themes.el
+++ b/alect-themes.el
@@ -4,7 +4,7 @@
;; Author: Alex Kost <[email protected]>
;; Created: 10 Jul 2013
-;; Version: 0.10
+;; Version: 0.11
;; Package-Requires: ((emacs "24.0"))
;; URL: https://github.com/alezost/alect-themes
;; Keywords: color theme
@@ -118,7 +118,7 @@ Used for date/time faces like `org-date' or
`erc-timestamp-face'."
(defface alect-file
'((t nil))
"Auxiliary face for inheriting by some other faces.
-Used for 'file name' faces like `change-log-file' or
+Used for file name faces like `change-log-file' or
`compilation-info'."
:group 'alect-faces)
@@ -279,7 +279,7 @@ specifications of faces.
Example:
(setq alect-overriding-faces
- '((mode-line-buffer-id ((t :foreground bg-2 :weight bold)))
+ \\='((mode-line-buffer-id ((t :foreground bg-2 :weight bold)))
(mode-line ((t :foreground bg-1 :background fg+1
:box (:line-width 2 :color bg-2))))))
Evaluate it and reload an alect-theme to see the difference."