Mercurial > emacs
changeset 85017:b0be1b2384d2
(Fframe_parameters): Minor simplification.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 02 Oct 2007 21:07:47 +0000 |
parents | c7d378d22b24 |
children | 3389713480bb |
files | src/frame.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Tue Oct 02 21:07:15 2007 +0000 +++ b/src/frame.c Tue Oct 02 21:07:47 2007 +0000 @@ -2391,7 +2391,7 @@ unspecified and reversed, take the frame's background pixel for foreground and vice versa. */ elt = Fassq (Qforeground_color, alist); - if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt))) + if (CONSP (elt) && STRINGP (XCDR (elt))) { if (strncmp (SDATA (XCDR (elt)), unspecified_bg, @@ -2405,7 +2405,7 @@ else store_in_alist (&alist, Qforeground_color, tty_color_name (f, fg)); elt = Fassq (Qbackground_color, alist); - if (!NILP (elt) && CONSP (elt) && STRINGP (XCDR (elt))) + if (CONSP (elt) && STRINGP (XCDR (elt))) { if (strncmp (SDATA (XCDR (elt)), unspecified_fg,