1
0
mirror of https://github.com/sellout/emacs-color-theme-solarized.git synced 2024-06-26 07:39:07 +02:00
This commit is contained in:
niku 2014-03-24 03:57:23 +00:00
commit a26d552eb5

View File

@ -77,11 +77,11 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
capabilities, etc.") capabilities, etc.")
(defvar which-flet (defvar which-flet
"This variable will store either flet or cl-flet depending on the Emacs (if (and (>= emacs-major-version 24) (> emacs-minor-version 2))
version. flet was deprecated in in 24.3")
(if (and (> emacs-major-version 24) (> emacs-minor-version 2))
(fset 'which-flet 'cl-flet) (fset 'which-flet 'cl-flet)
(fset 'which-flet 'flet)) (fset 'which-flet 'flet))
"This variable will store either flet or cl-flet depending on the Emacs
version. flet was deprecated in in 24.3")
(defun solarized-color-definitions (mode) (defun solarized-color-definitions (mode)
(which-flet ((find-color (name) (which-flet ((find-color (name)