One / instead of two for functions used in spacemacs/post-theme-init

This commit is contained in:
syl20bnr 2015-05-13 21:59:59 -04:00
parent 9f7020ecc5
commit c4b7fe9af9
3 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@
;;; License: GPLv3
(require 'lv)
(defun spacemacs//defface-micro-state-faces ()
(defun spacemacs/defface-micro-state-faces ()
"Define faces for micro-states."
(let* ((hname 'spacemacs-micro-state-header-face)
(bname 'spacemacs-micro-state-binding-face)
@ -35,7 +35,7 @@ Characters enclosed in `[]' will have this face applied to them."
(set-face-attribute bname nil
:foreground err
:bold t)))
(spacemacs//defface-micro-state-faces)
(spacemacs/defface-micro-state-faces)
(defmacro spacemacs|define-micro-state (name &rest props)
"Define a micro-state called NAME.

View File

@ -212,10 +212,10 @@ changed to THEME."
(spacemacs/set-flycheck-mode-line-faces))
(when (fboundp 'spacemacs/set-new-version-lighter-mode-line-faces)
(spacemacs/set-new-version-lighter-mode-line-faces))
(when (fboundp 'spacemacs//defface-micro-state-faces)
(spacemacs//defface-micro-state-faces))
(when (fboundp 'spacemacs//customize-powerline-faces)
(spacemacs//customize-powerline-faces))
(when (fboundp 'spacemacs/defface-micro-state-faces)
(spacemacs/defface-micro-state-faces))
(when (fboundp 'spacemacs/customize-powerline-faces)
(spacemacs/customize-powerline-faces))
(when (fboundp 'powerline-reset)
(powerline-reset))
(when (fboundp 'spacemacs/adaptive-evil-highlight-persist-face)

View File

@ -2280,11 +2280,11 @@ displayed in the mode-line.")
(setq-default powerline-default-separator 'wave)
(setq-default powerline-default-separator 'utf-8))
(defun spacemacs//customize-powerline-faces ()
(defun spacemacs/customize-powerline-faces ()
"Alter powerline face to make them work with more themes."
(set-face-attribute 'powerline-inactive2 nil
:inherit 'font-lock-comment-face))
(spacemacs//customize-powerline-faces)
(spacemacs/customize-powerline-faces)
(defun spacemacs/mode-line-prepare-left ()