[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/xfaces.c [lexbind]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/src/xfaces.c [lexbind] |
Date: |
Sat, 04 Sep 2004 05:42:00 -0400 |
Index: emacs/src/xfaces.c
diff -c emacs/src/xfaces.c:1.255.2.17 emacs/src/xfaces.c:1.255.2.18
*** emacs/src/xfaces.c:1.255.2.17 Sat Sep 4 09:18:40 2004
--- emacs/src/xfaces.c Sat Sep 4 09:24:38 2004
***************
*** 3626,3632 ****
Lisp_Object value = XCAR (XCDR (face_ref));
int err = 0;
! if (EQ (keyword, QCfamily))
{
if (STRINGP (value))
to[LFACE_FAMILY_INDEX] = value;
--- 3626,3635 ----
Lisp_Object value = XCAR (XCDR (face_ref));
int err = 0;
! /* Specifying `unspecified' is a no-op. */
! if (EQ (value, Qunspecified))
! ;
! else if (EQ (keyword, QCfamily))
{
if (STRINGP (value))
to[LFACE_FAMILY_INDEX] = value;