Fix order of DOCSTRING

See also (describe-function 'defvar)
-> (defvar SYMBOL &optional INITVALUE DOCSTRING)
This commit is contained in:
niku 2014-03-24 11:32:51 +09:00
parent 0d189230e8
commit c201a5dec6
1 changed files with 3 additions and 3 deletions

View File

@ -77,11 +77,11 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further."
capabilities, etc.")
(defvar which-flet
(if (and (> emacs-major-version 24) (> emacs-minor-version 2))
(fset 'which-flet 'cl-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")
(if (and (> emacs-major-version 24) (> emacs-minor-version 2))
(fset 'which-flet 'cl-flet)
(fset 'which-flet 'flet))
(defun solarized-color-definitions (mode)
(which-flet ((find-color (name)