diff options
author | Andreas Schwab <schwab@suse.de> | 2006-11-19 01:26:00 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2006-11-19 01:26:00 +0000 |
commit | 221439a094d62aa87281b5c5285f9e7372071c97 (patch) | |
tree | 76c51e453842fd8512fb013b0d19fb100a08f7f8 | |
parent | 9397721973fd1bf9dbf7e59a95f3faaa4cd31abc (diff) | |
download | emacs-221439a094d62aa87281b5c5285f9e7372071c97.tar.gz |
(Fdisplay_supports_face_attributes_p): Initialize
supports.
-rw-r--r-- | src/ChangeLog | 7 | ||||
-rw-r--r-- | src/xfaces.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ad27ff82251..9e0aca92a59 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2006-11-19 Andreas Schwab <schwab@gnu.org> + + * xfaces.c (Fdisplay_supports_face_attributes_p): Initialize + supports. + + * xmenu.c (Fx_popup_menu): Initialize selection. + 2006-11-18 Andreas Schwab <schwab@suse.de> * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Update call to diff --git a/src/xfaces.c b/src/xfaces.c index c408a7d3685..bd08871f278 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -6178,7 +6178,7 @@ face for italic. */) (attributes, display) Lisp_Object attributes, display; { - int supports, i; + int supports = 0, i; Lisp_Object frame; struct frame *f; struct face *def_face; |