all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* GNU Emacs 22: Invalid face font-lock-keyword-face
@ 2005-04-13  7:04 dan.sanderson
  2005-04-13  8:46 ` Peter Dyballa
  2005-04-14 13:41 ` Stefan Monnier
  0 siblings, 2 replies; 3+ messages in thread
From: dan.sanderson @ 2005-04-13  7:04 UTC (permalink / raw)


Hi all -

I'm running GNU Emacs 22.0.50.1 (powerpc-apple-darwin7.8.0) of
2005-04-09.  I'm getting repeated errors that say "Invalid face
font-lock-keyword-face".  Many actions seem to cause it.  Is there a
way to silence this error?

I realize I'm running an unstable version, so I'm not ungrateful.  :)
Was this face removed for v22, such that I might be getting this
message due to incompatibility with other packages?  Or is this a bug
of some other sort?  There are only a couple of things in my load-path
that are not specific to the 22.0.50 distribution, just a few modes
that manipulate this face.

Thanks for any assistance you can provide!
-- Dan

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: GNU Emacs 22: Invalid face font-lock-keyword-face
  2005-04-13  7:04 GNU Emacs 22: Invalid face font-lock-keyword-face dan.sanderson
@ 2005-04-13  8:46 ` Peter Dyballa
  2005-04-14 13:41 ` Stefan Monnier
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Dyballa @ 2005-04-13  8:46 UTC (permalink / raw)
  Cc: help-gnu-emacs


Am 13.04.2005 um 09:04 schrieb dan.sanderson@gmail.com:

> I'm running GNU Emacs 22.0.50.1 (powerpc-apple-darwin7.8.0) of
> 2005-04-09.  I'm getting repeated errors that say "Invalid face
> font-lock-keyword-face".  Many actions seem to cause it.  Is there a
> way to silence this error?

I'm using the same without problems. One means to silence it is to 
start it with -Q: without your customization. The other way is to add 
--debug-init and check the contents of the *Backtrace* buffer. Step by 
step you'll be able to correct your faces.

If the problems come from the Carbon version it might be useful to have 
more than one file with customization and settings. Some weeks ago I 
started that:

(setq custom-file
       (format "~/.emacs-Abrichtung-%d.el"
               emacs-major-version))
(load custom-file)

Quite a bit elder is:

(cond ((= 21 emacs-major-version)
   (progn
     (desktop-read)
     (cond ((string= "x" window-system)
         (message "Sind in X11")
         (load "~/.emacs_X11")
     ))  ; Ende X11
     (cond ((string= "mac" window-system)
         (message "Sind in Aqua")
         (load "~/.emacs_Carbon")
;        (require '.emacs_Carbon)
     ))  ; Ende Carbon
     (cond ((string= 'nil window-system)
         (message "Sind im Terminal")
         (load "~/.emacs_nil")
     ))  ; Ende Terminal
     (cond ((= 2 emacs-minor-version)
         (message "Apple's GNU Emacs")
         (load "~/.emacs_Apple")
         ));Version 21.1.30.3
)));Version 21

(cond ((= 22 emacs-major-version)
   (progn
     (desktop-lazy-complete)
       (cond ((string= "x" window-system)
       (message "Sind in X11")
       (load "~/.emacs_X11")
       ))        ; Ende X11
     (cond ((string= "mac" window-system)
       (message "Sind in Aqua")
       (load "~/.emacs_Carbon")
       ))        ; Ende Carbon
     (cond ((string= 'nil window-system)
;       (progn
       (message "Sind im Terminal")
       (load "~/.emacs_nil")
       ))        ; Ende Terminal
)))     ;Version 22


--
Greetings

   Pete

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: GNU Emacs 22: Invalid face font-lock-keyword-face
  2005-04-13  7:04 GNU Emacs 22: Invalid face font-lock-keyword-face dan.sanderson
  2005-04-13  8:46 ` Peter Dyballa
@ 2005-04-14 13:41 ` Stefan Monnier
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Monnier @ 2005-04-14 13:41 UTC (permalink / raw)


> I'm running GNU Emacs 22.0.50.1 (powerpc-apple-darwin7.8.0) of
> 2005-04-09.  I'm getting repeated errors that say "Invalid face
> font-lock-keyword-face".  Many actions seem to cause it.  Is there a
> way to silence this error?

M-x report-emacs-bug, as explained in the INSTALL.CVS file.


        Stefan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-04-14 13:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-13  7:04 GNU Emacs 22: Invalid face font-lock-keyword-face dan.sanderson
2005-04-13  8:46 ` Peter Dyballa
2005-04-14 13:41 ` Stefan Monnier

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.