>>>> Stephen J Turnbull <stephen(a)xemacs.org> writes:
 gyre writes:
> I briefly had a go at running it.  I worked around the lack of
> define-function, and some missing packages, but gave up when it
> started complaining about :inherit on a face. 
 I'll take a look at it. 
Seems like GNU does not require ATTS in SPEC in defface to be a list!?
(Although the docs does not clearly state this.)
(defface magit-header
  '((t :inherit header-line))
  ...
Making it a list seems to fix the problem. So this code below works. I
think this works in GNU as well.
(defface magit-header
  '((t (:inherit header-line)))
  ...
I guess we should change defface to allow for this, or?
Yours
-- 
%% Mats
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta