Am 13.04.2005 um 09:04 schrieb [EMAIL PROTECTED]:

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



_______________________________________________
Help-gnu-emacs mailing list
Help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

Reply via email to