diff options
| author | João Távora | 2018-06-09 15:49:04 +0100 |
|---|---|---|
| committer | João Távora | 2018-06-09 15:49:04 +0100 |
| commit | 16a7bce700f4b90bd6b2d7ab4bb860a3c29cb764 (patch) | |
| tree | 48b02e12d83195e21658476dfd56caa1af71c557 /src/dispextern.h | |
| parent | 4aed7ee79cbea9963a84d5d925d39f7bc07aed98 (diff) | |
| parent | 38111b5e98380c518aeb1bb7be52b7972a248332 (diff) | |
| download | emacs-scratch/allow-custom-null-and-false-objects-in-jsonc.tar.gz emacs-scratch/allow-custom-null-and-false-objects-in-jsonc.zip | |
Merge branch 'master' into this scratch branchscratch/allow-custom-null-and-false-objects-in-jsonc
scratch/allow-custom-null-and-false-objects-in-jsonc
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index bc2a76f1e02..2180c9ae63f 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -3429,11 +3429,12 @@ char *choose_face_font (struct frame *, Lisp_Object *, Lisp_Object, | |||
| 3429 | #ifdef HAVE_WINDOW_SYSTEM | 3429 | #ifdef HAVE_WINDOW_SYSTEM |
| 3430 | void prepare_face_for_display (struct frame *, struct face *); | 3430 | void prepare_face_for_display (struct frame *, struct face *); |
| 3431 | #endif | 3431 | #endif |
| 3432 | int lookup_named_face (struct frame *, Lisp_Object, bool); | 3432 | int lookup_named_face (struct window *, struct frame *, Lisp_Object, bool); |
| 3433 | int lookup_basic_face (struct frame *, int); | 3433 | int lookup_basic_face (struct window *, struct frame *, int); |
| 3434 | int smaller_face (struct frame *, int, int); | 3434 | int smaller_face (struct frame *, int, int); |
| 3435 | int face_with_height (struct frame *, int, int); | 3435 | int face_with_height (struct frame *, int, int); |
| 3436 | int lookup_derived_face (struct frame *, Lisp_Object, int, bool); | 3436 | int lookup_derived_face (struct window *, struct frame *, |
| 3437 | Lisp_Object, int, bool); | ||
| 3437 | void init_frame_faces (struct frame *); | 3438 | void init_frame_faces (struct frame *); |
| 3438 | void free_frame_faces (struct frame *); | 3439 | void free_frame_faces (struct frame *); |
| 3439 | void recompute_basic_faces (struct frame *); | 3440 | void recompute_basic_faces (struct frame *); |
| @@ -3443,7 +3444,7 @@ int face_for_overlay_string (struct window *, ptrdiff_t, ptrdiff_t *, ptrdiff_t, | |||
| 3443 | bool, Lisp_Object); | 3444 | bool, Lisp_Object); |
| 3444 | int face_at_string_position (struct window *, Lisp_Object, ptrdiff_t, ptrdiff_t, | 3445 | int face_at_string_position (struct window *, Lisp_Object, ptrdiff_t, ptrdiff_t, |
| 3445 | ptrdiff_t *, enum face_id, bool); | 3446 | ptrdiff_t *, enum face_id, bool); |
| 3446 | int merge_faces (struct frame *, Lisp_Object, int, int); | 3447 | int merge_faces (struct window *, Lisp_Object, int, int); |
| 3447 | int compute_char_face (struct frame *, int, Lisp_Object); | 3448 | int compute_char_face (struct frame *, int, Lisp_Object); |
| 3448 | void free_all_realized_faces (Lisp_Object); | 3449 | void free_all_realized_faces (Lisp_Object); |
| 3449 | extern char unspecified_fg[], unspecified_bg[]; | 3450 | extern char unspecified_fg[], unspecified_bg[]; |