diff options
| author | Stefan Monnier | 2010-12-10 19:13:08 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2010-12-10 19:13:08 -0500 |
| commit | 2c302df3a13236bfbf8ea1b771d13618fcda8d71 (patch) | |
| tree | f26dc9f22861dc37610de319d05255de058c221b /src/xfaces.c | |
| parent | 0c747cb143fa227e78f350ac353d703f489209df (diff) | |
| parent | 175069efeb080517afefdd44a06f7a779ea8c25c (diff) | |
| download | emacs-2c302df3a13236bfbf8ea1b771d13618fcda8d71.tar.gz emacs-2c302df3a13236bfbf8ea1b771d13618fcda8d71.zip | |
Merge from trunk
Diffstat (limited to 'src/xfaces.c')
| -rw-r--r-- | src/xfaces.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 21adb948c91..5c7cfe67607 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | /* xfaces.c -- "Face" primitives. | 1 | /* xfaces.c -- "Face" primitives. |
| 2 | Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, | 2 | |
| 3 | 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. | 3 | Copyright (C) 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
| 4 | 2005, 2006, 2007, 2008, 2009, 2010 | ||
| 5 | Free Software Foundation, Inc. | ||
| 4 | 6 | ||
| 5 | This file is part of GNU Emacs. | 7 | This file is part of GNU Emacs. |
| 6 | 8 | ||
| @@ -4538,7 +4540,7 @@ uncache_face (struct face_cache *c, struct face *face) | |||
| 4538 | Value is the ID of the face found. If no suitable face is found, | 4540 | Value is the ID of the face found. If no suitable face is found, |
| 4539 | realize a new one. */ | 4541 | realize a new one. */ |
| 4540 | 4542 | ||
| 4541 | INLINE int | 4543 | static INLINE int |
| 4542 | lookup_face (struct frame *f, Lisp_Object *attr) | 4544 | lookup_face (struct frame *f, Lisp_Object *attr) |
| 4543 | { | 4545 | { |
| 4544 | struct face_cache *cache = FRAME_FACE_CACHE (f); | 4546 | struct face_cache *cache = FRAME_FACE_CACHE (f); |
| @@ -6731,7 +6733,8 @@ See `set-face-stipple' for possible values for this variable. */); | |||
| 6731 | Vface_default_stipple = make_pure_c_string ("gray3"); | 6733 | Vface_default_stipple = make_pure_c_string ("gray3"); |
| 6732 | 6734 | ||
| 6733 | DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist, | 6735 | DEFVAR_LISP ("tty-defined-color-alist", &Vtty_defined_color_alist, |
| 6734 | doc: /* An alist of defined terminal colors and their RGB values. */); | 6736 | doc: /* An alist of defined terminal colors and their RGB values. |
| 6737 | See the docstring of `tty-color-alist' for the details. */); | ||
| 6735 | Vtty_defined_color_alist = Qnil; | 6738 | Vtty_defined_color_alist = Qnil; |
| 6736 | 6739 | ||
| 6737 | DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, | 6740 | DEFVAR_LISP ("scalable-fonts-allowed", &Vscalable_fonts_allowed, |
| @@ -6808,5 +6811,3 @@ a font of 10 point, we actually use a font of 10 * RESCALE-RATIO point. */); | |||
| 6808 | #endif | 6811 | #endif |
| 6809 | } | 6812 | } |
| 6810 | 6813 | ||
| 6811 | /* arch-tag: 8a0f7598-5517-408d-9ab3-1da6fcd4c749 | ||
| 6812 | (do not change this comment) */ | ||