From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/7856 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?S=C3=A9bastien_Vauban?= Newsgroups: gmane.emacs.gnus.user Subject: Re: ColorTheme badly functioning in Emacs 22 Date: Mon, 21 Aug 2006 19:37:02 GMT Organization: Sebastien Vauban Message-ID: <877j116fts.fsf@missioncriticalit.com> References: <87hd0749yz.fsf@missioncriticalit.com> <87k653ds0q.fsf@mail.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1156189276 22480 80.91.229.2 (21 Aug 2006 19:41:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 21 Aug 2006 19:41:16 +0000 (UTC) Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon Aug 21 21:41:13 2006 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GFFe3-0005tf-Rd for gegu-info-gnus-english@m.gmane.org; Mon, 21 Aug 2006 21:41:12 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GFFe3-0004cT-Ao for gegu-info-gnus-english@m.gmane.org; Mon, 21 Aug 2006 15:41:11 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!news.astraweb.com!newsrouter-eu.astraweb.com!border1.nntp.ams.giganews.com!nntp.giganews.com!newsfeeder.wxs.nl!hoboe2bl2.telenet-ops.be!nntp.telenet.be!kwabbernoot.telenet-ops.be!phobos.telenet-ops.be.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.gnus X-Www-site: Under construction... User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:PyE3eVtBu0/k7SOMOd8VWj0tKxc= Original-Lines: 93 Original-NNTP-Posting-Host: 84.195.176.134 Original-X-Complaints-To: abuse@telenet.be Original-X-Trace: phobos.telenet-ops.be 1156189022 84.195.176.134 (Mon, 21 Aug 2006 21:37:02 MEST) Original-NNTP-Posting-Date: Mon, 21 Aug 2006 21:37:02 MEST Original-Xref: shelby.stanford.edu gnu.emacs.gnus:78040 Original-To: info-gnus-english@gnu.org X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:7856 Archived-At: Hello, >>> I'm a long time user (and a big fan) of ColorTheme, but have now >>> problems within Emacs 22 (both in Ubuntu and in the Windows >>> port): many buffers are not colored anymore (Gnus groups for >>> example), or not the first time the buffer is visited (Org list >>> of tasks for example). >>> >>> Going back and forth from/to Emacs 21/22 with the same .emacs >>> configuration file, I can see the differences: my color theme is >>> no more applied... >>> >>> ,----[ color-theme-seb.el ] >>> | >>> | (require 'color-theme) >>> | >>> | (defun color-theme-seb () >>> | "Initialize faces according to my preferences." >>> | (interactive) >>> | (color-theme-install >>> | '(color-theme-seb >>> | ((background-color . "white") >>> | (background-mode . light) >>> | (border-color . "black") >>> | (cursor-color . "rgb:15/FF/00") >>> | (foreground-color . "black") >>> | (mouse-color . "black")) >>> | >>> | (default ((t (nil)))) >>> | (bold ((t (:bold t :weight bold)))) >>> | (bold-italic ((t (:italic t :bold t :slant italic :weight bold)))) >>> | (italic ((t (:italic t :slant italic)))) >>> | (underline ((t (:underline t)))) >>> | (highlight ((t (:foreground "white" :background "rgb:31/6A/C5")))) >>> | >>> | ;; Gnus group buffer >>> | (gnus-group-mail-1-empty-face ((t (:foreground "rgb:50/50/B0")))) >>> | (gnus-group-mail-1-face ((t (:foreground "rgb:50/50/B0" :bold t)))) >>> | (gnus-group-mail-2-empty-face ((t (:foreground "rgb:66/00/66")))) >>> | (gnus-group-mail-2-face ((t (:foreground "rgb:66/00/66" :bold t)))) >>> | (gnus-group-mail-3-empty-face ((t (:foreground "rgb:00/77/77")))) >>> | (gnus-group-mail-3-face ((t (:foreground "rgb:00/77/77" :bold t)))) >>> | >>> | ;; org >>> | (org-done ((t (:foreground "gray55" :strike-through t)))) >>> | (org-level-1 ((t (:foreground "blue" :bold t :height 1.4)))) >>> | (org-level-2 ((t (:foreground "red" :bold t :height 1.2)))) >>> | (org-level-3 ((t (:foreground "Purple")))) >>> | (org-scheduled-previously ((t (:foreground "blue" :bold t)))) >>> | (org-scheduled-today ((t (:foreground "blue")))) >>> | (org-upcoming-deadline ((t (:foreground "DarkOrange" :bold t)))) >>> | >>> | [...] >>> | >>> `---- >>> >>> I don't know if it's of importance, but here are the fonts I'm >>> using (one under Ubuntu, the other under Windows, in 9 points): >>> >>> ,----[ Extract of my .emacs ] >>> | >>> | [...] >>> | >>> | ;; set default font family and font size >>> | (assq-delete-all 'font default-frame-alist) >>> | (defvar my-default-font >>> | (if running-ms-windows >>> | "-*-Courier New-*-*-*-*-12-90-*-*-*-*-*-*" >>> | "-Misc-Fixed-Medium-R-SemiCondensed-*-13-*-*-*-*-*-*-*")) >>> | ;; this latest face supports bold (in Gnus) while >>> | ;; "-misc-*-*-*-*-*-12-90-*-*-*-*-*-*" does not!! >>> | >>> | (add-to-list 'default-frame-alist (cons 'font my-default-font)) >>> `---- >> >> It works perfectly in Fedora core 5. Did you grab color-theme from CVS? > > http://www.emacswiki.org/cgi-bin/wiki?ColorTheme#ColorTheme3 No, I'm using color-theme 6.6.0 fetched from the EmacsWiki site... > CVS version is fine in Dapper 606 too using the debian snapshot. ... under Dapper 6.06, using the Emacs snapshot: GNU Emacs 22.0.50.1 (i486-pc-linux-gnu, X toolkit, Xaw3d scroll bars) of 2006-01-16 on vernadsky, modified by Debian. Seb. -- Sébastien Vauban