LINUX.ORG.RU

color-theme


0

1

Emacs: Под Windows не получается загрузить color-theme 6.6.0.
Пишет
face-attribute: Wrong type argument: symbolp, (shadow default)


делал так? работает на emacs23.1

[lang=lisp] (add-to-list 'load-path «<your_path_to>/color-theme/») (require 'color-theme) (eval-after-load 'color-theme '(progn (color-theme-initialize) (color-theme-clarity))) [/lang]

anonymous
()
Ответ на: комментарий от anonymous

делал так? работает на emacs23.1

(add-to-list 'load-path "<your_path_to>/color-theme/")
(require 'color-theme)
(eval-after-load 'color-theme
  '(progn
     (color-theme-initialize)
     (color-theme-clarity)))
anonymous
()

На случай если совет анонима не поможет
http://www.emacswiki.org/emacs/ColorTheme#toc2

If you find that M-x color-theme-select fails with an error like the following: face-attribute: Wrong type argument: symbolp, (quote font-lock-builtin-face) try using this alternate definition of color-theme-face-attr-construct:

    (defun color-theme-face-attr-construct (face frame)
       (if (atom face)
           (custom-face-attributes-get face frame)
         (if (and (consp face) (eq (car face) 'quote))
             (custom-face-attributes-get (cadr face) frame)
           (custom-face-attributes-get (car face) frame))))
cx ★★
()
Ответ на: комментарий от anonymous

Warning (initialization): An error occurred while loading `c:/Users/Andrew/AppData/Roaming/.emacs.d/init.el':

End of file during parsing: c:/emacs/lisp/color-theme/color-theme.el

NoName
() автор топика
Ответ на: комментарий от cx

добавил код в init.el убрав предыдущий - результат такой же.

NoName
() автор топика
Ответ на: комментарий от cx

А, нашел этот код в color-theme.el, там он уже есть точно такой же.

NoName
() автор топика

УРА РАБОТАЕТ!!
УРА!!!!!!!!!!!

Получилось первым способом. Проблема не решалась потому что перед этим модифицировал исходник и забыл про это.

NoName
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.