diff options
| author | Juanma Barranquero | 2008-06-16 22:42:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-06-16 22:42:46 +0000 |
| commit | 3554e566e3e24e7983ac8a64cb7301d5ae8e2ea9 (patch) | |
| tree | 35cae5d1a2239254bbb4e3c6781b3393e58b539f /src | |
| parent | 7b74a6f9f0da0023dfb1aefab6d064f3587da4a4 (diff) | |
| download | emacs-3554e566e3e24e7983ac8a64cb7301d5ae8e2ea9.tar.gz emacs-3554e566e3e24e7983ac8a64cb7301d5ae8e2ea9.zip | |
* dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
(build_font_name_from_vector): Delete externs.
* xfaces.c (struct font_name): Don't declare.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/dispextern.h | 3 | ||||
| -rw-r--r-- | src/xfaces.c | 1 |
3 files changed, 8 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1df8b2ae032..16e9af14b29 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-06-16 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector) | ||
| 4 | (build_font_name_from_vector): Delete externs. | ||
| 5 | |||
| 6 | * xfaces.c (struct font_name): Don't declare. | ||
| 7 | |||
| 1 | 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca> | 8 | 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 9 | ||
| 3 | * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects. | 10 | * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects. |
| @@ -1279,7 +1286,7 @@ | |||
| 1279 | change of font-related objects. | 1286 | change of font-related objects. |
| 1280 | (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols. | 1287 | (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols. |
| 1281 | 1288 | ||
| 1282 | * fontset.h (struct font_info): Delete it. Most memnbers go to | 1289 | * fontset.h (struct font_info): Delete it. Most members go to |
| 1283 | struct font. | 1290 | struct font. |
| 1284 | (FONT_ENCODING_NOT_DECIDED): Moved to font.h. | 1291 | (FONT_ENCODING_NOT_DECIDED): Moved to font.h. |
| 1285 | (enum FONT_SPEC_INDEX): Delete it. | 1292 | (enum FONT_SPEC_INDEX): Delete it. |
diff --git a/src/dispextern.h b/src/dispextern.h index 56a1cd45cb7..8ea9ab4c3e5 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -2855,7 +2855,6 @@ int ascii_face_of_lisp_face P_ ((struct frame *, int)); | |||
| 2855 | void prepare_face_for_display P_ ((struct frame *, struct face *)); | 2855 | void prepare_face_for_display P_ ((struct frame *, struct face *)); |
| 2856 | int xstrcasecmp P_ ((const unsigned char *, const unsigned char *)); | 2856 | int xstrcasecmp P_ ((const unsigned char *, const unsigned char *)); |
| 2857 | int lookup_face P_ ((struct frame *, Lisp_Object *)); | 2857 | int lookup_face P_ ((struct frame *, Lisp_Object *)); |
| 2858 | int lookup_non_ascii_face P_ ((struct frame *, int, struct face *)); | ||
| 2859 | int lookup_named_face P_ ((struct frame *, Lisp_Object, int)); | 2858 | int lookup_named_face P_ ((struct frame *, Lisp_Object, int)); |
| 2860 | int lookup_basic_face P_ ((struct frame *, int)); | 2859 | int lookup_basic_face P_ ((struct frame *, int)); |
| 2861 | int smaller_face P_ ((struct frame *, int, int)); | 2860 | int smaller_face P_ ((struct frame *, int, int)); |
| @@ -2883,8 +2882,6 @@ void free_realized_face P_ ((struct frame *, struct face *)); | |||
| 2883 | extern Lisp_Object Qforeground_color, Qbackground_color; | 2882 | extern Lisp_Object Qforeground_color, Qbackground_color; |
| 2884 | extern Lisp_Object Qframe_set_background_mode; | 2883 | extern Lisp_Object Qframe_set_background_mode; |
| 2885 | extern char unspecified_fg[], unspecified_bg[]; | 2884 | extern char unspecified_fg[], unspecified_bg[]; |
| 2886 | extern Lisp_Object split_font_name_into_vector P_ ((Lisp_Object)); | ||
| 2887 | extern Lisp_Object build_font_name_from_vector P_ ((Lisp_Object)); | ||
| 2888 | 2885 | ||
| 2889 | extern Lisp_Object Vface_remapping_alist; | 2886 | extern Lisp_Object Vface_remapping_alist; |
| 2890 | 2887 | ||
diff --git a/src/xfaces.c b/src/xfaces.c index 51da48be48f..15d6e6bcbf6 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -503,7 +503,6 @@ int menu_face_changed_default; | |||
| 503 | 503 | ||
| 504 | /* Function prototypes. */ | 504 | /* Function prototypes. */ |
| 505 | 505 | ||
| 506 | struct font_name; | ||
| 507 | struct table_entry; | 506 | struct table_entry; |
| 508 | struct named_merge_point; | 507 | struct named_merge_point; |
| 509 | 508 | ||