solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit dbbade9e77a1445b950f0d414233553001a5ccdc
parent 4e52026466cf89994f521349cd3e4a5db5614988
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Mon,  6 Apr 2015 06:59:38 +0200

Remove the child-theme support

- It has not worked for a very long time anyway

Diffstat:
Msolarized.el | 10+++-------
1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/solarized.el b/solarized.el @@ -148,11 +148,8 @@ Alpha should be a float between 0 and 1." ;;; Setup Start -(defun create-solarized-theme (variant theme-name &optional childtheme) - "Create a VARIANT of the theme named THEME-NAME. - -When optional argument CHILDTHEME function is supplied it's invoked to further -customize the resulting theme." +(defun create-solarized-theme (variant theme-name) + "Create a VARIANT of the theme named THEME-NAME." ;;; Color palette (let* ((class '((class color) (min-colors 89))) (s-base03 "#002b36") @@ -2057,8 +2054,7 @@ customize the resulting theme." `(xterm-color-names-bright [,base03 ,orange ,base01 ,base00 ,base0 ,violet ,base1 ,base3]) ;;; Setup End - (when childtheme - (funcall childtheme)) + ) ; END custom-theme-set-variables ) ; END defun create-solarized-theme