Change `MAKE-SYMBOL` back to `INTERN`. This should fix issue #16.

This commit is contained in:
Greg Pfeil 2011-05-18 07:49:36 -04:00
parent 9cf0ddaad5
commit d4a524db32
1 changed files with 1 additions and 1 deletions

View File

@ -286,7 +286,7 @@ will use the 256 degraded color mode."
(cursor-color . ,base0))))))
(defmacro create-solarized-theme (mode)
(let* ((theme-name (make-symbol (concat "solarized-" (symbol-name mode))))
(let* ((theme-name (intern (concat "solarized-" (symbol-name mode))))
(defs (solarized-color-definitions mode))
(theme-vars (mapcar (lambda (def) (list (car def) (cdr def)))
(second defs)))