diff options
| author | Joakim Verona | 2013-07-14 11:04:49 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-07-14 11:04:49 +0200 |
| commit | 0bb9bb0841d89fff09820a57369df4cb01b16b43 (patch) | |
| tree | 832bf9fa8415eef0ce464d22b3ee1300cfa90bb1 /src/dispextern.h | |
| parent | 3718127221fbbc31f8ebd027ab7c95403dbe9118 (diff) | |
| parent | 3af1c8684ed6e48fbc21481d129e9aa164752c6e (diff) | |
| download | emacs-0bb9bb0841d89fff09820a57369df4cb01b16b43.tar.gz emacs-0bb9bb0841d89fff09820a57369df4cb01b16b43.zip | |
Merge branch 'trunk' into xwidget
Conflicts:
src/xdisp.c
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index d1e62c8ea16..e5a43d820dc 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -3144,6 +3144,7 @@ struct glyph_row *row_containing_pos (struct window *, ptrdiff_t, | |||
| 3144 | struct glyph_row *, | 3144 | struct glyph_row *, |
| 3145 | struct glyph_row *, int); | 3145 | struct glyph_row *, int); |
| 3146 | int line_bottom_y (struct it *); | 3146 | int line_bottom_y (struct it *); |
| 3147 | int default_line_pixel_height (struct window *); | ||
| 3147 | int display_prop_intangible_p (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t); | 3148 | int display_prop_intangible_p (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t); |
| 3148 | void resize_echo_area_exactly (void); | 3149 | void resize_echo_area_exactly (void); |
| 3149 | int resize_mini_window (struct window *, int); | 3150 | int resize_mini_window (struct window *, int); |
| @@ -3325,7 +3326,7 @@ int image_ascent (struct image *, struct face *, struct glyph_slice *); | |||
| 3325 | void get_tty_size (int, int *, int *); | 3326 | void get_tty_size (int, int *, int *); |
| 3326 | void request_sigio (void); | 3327 | void request_sigio (void); |
| 3327 | void unrequest_sigio (void); | 3328 | void unrequest_sigio (void); |
| 3328 | int tabs_safe_p (int); | 3329 | bool tabs_safe_p (int); |
| 3329 | void init_baud_rate (int); | 3330 | void init_baud_rate (int); |
| 3330 | void init_sigio (int); | 3331 | void init_sigio (int); |
| 3331 | void ignore_sigio (void); | 3332 | void ignore_sigio (void); |
| @@ -3497,11 +3498,12 @@ extern int string_cost (const char *); | |||
| 3497 | extern int per_line_cost (const char *); | 3498 | extern int per_line_cost (const char *); |
| 3498 | extern void calculate_costs (struct frame *); | 3499 | extern void calculate_costs (struct frame *); |
| 3499 | extern void produce_glyphs (struct it *); | 3500 | extern void produce_glyphs (struct it *); |
| 3500 | extern int tty_capable_p (struct tty_display_info *, unsigned, unsigned long, unsigned long); | 3501 | extern bool tty_capable_p (struct tty_display_info *, unsigned, |
| 3502 | unsigned long, unsigned long); | ||
| 3501 | extern void set_tty_color_mode (struct tty_display_info *, struct frame *); | 3503 | extern void set_tty_color_mode (struct tty_display_info *, struct frame *); |
| 3502 | extern struct terminal *get_named_tty (const char *); | 3504 | extern struct terminal *get_named_tty (const char *); |
| 3503 | extern void create_tty_output (struct frame *); | 3505 | extern void create_tty_output (struct frame *); |
| 3504 | extern struct terminal *init_tty (const char *, const char *, int); | 3506 | extern struct terminal *init_tty (const char *, const char *, bool); |
| 3505 | extern void tty_append_glyph (struct it *); | 3507 | extern void tty_append_glyph (struct it *); |
| 3506 | 3508 | ||
| 3507 | 3509 | ||