comparison src/dispextern.h @ 109673:0781924c2a38

Remove duplicate declarations. * lib-src/ebrowse.c (usage, version, mark_virtual) * src/alloc.c (lisp_malloc) * src/buffer.c (set_buffer_internal, set_buffer_internal_1) * src/charset.h (emacs_mule_charset) * src/dispextern.h (inhibit_free_realized_faces, redraw_frame) (redraw_garbaged_frames, scroll_cost, update_frame, scrolling) (bitch_at_user) * src/lisp.h (Fcheck_coding_system, Fget_text_property) (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize)
author Juanma Barranquero <lekktu@gmail.com>
date Sat, 07 Aug 2010 03:10:12 +0200
parents fc7a8c411aa3
children 8949aad5e992
comparison
equal deleted inserted replaced
109672:bd826f80a765 109673:0781924c2a38
2428 /* Call produce_glyphs or FRAME_RIF->produce_glyphs, if set. Shortcut 2428 /* Call produce_glyphs or FRAME_RIF->produce_glyphs, if set. Shortcut
2429 to avoid the function call overhead. */ 2429 to avoid the function call overhead. */
2430 2430
2431 #define PRODUCE_GLYPHS(IT) \ 2431 #define PRODUCE_GLYPHS(IT) \
2432 do { \ 2432 do { \
2433 extern int inhibit_free_realized_faces; \
2434 if ((IT)->glyph_row != NULL && (IT)->bidi_p) \ 2433 if ((IT)->glyph_row != NULL && (IT)->bidi_p) \
2435 { \ 2434 { \
2436 if ((IT)->bidi_it.paragraph_dir == R2L) \ 2435 if ((IT)->bidi_it.paragraph_dir == R2L) \
2437 (IT)->glyph_row->reversed_p = 1; \ 2436 (IT)->glyph_row->reversed_p = 1; \
2438 else \ 2437 else \
3241 void enable_glyph_matrix_rows (struct glyph_matrix *, int, int, int); 3240 void enable_glyph_matrix_rows (struct glyph_matrix *, int, int, int);
3242 void clear_glyph_row (struct glyph_row *); 3241 void clear_glyph_row (struct glyph_row *);
3243 void prepare_desired_row (struct glyph_row *); 3242 void prepare_desired_row (struct glyph_row *);
3244 int line_hash_code (struct glyph_row *); 3243 int line_hash_code (struct glyph_row *);
3245 void set_window_update_flags (struct window *, int); 3244 void set_window_update_flags (struct window *, int);
3246 void redraw_frame (struct frame *);
3247 void redraw_garbaged_frames (void);
3248 int scroll_cost (struct frame *, int, int, int);
3249 int update_frame (struct frame *, int, int);
3250 void update_single_window (struct window *, int); 3245 void update_single_window (struct window *, int);
3251 int scrolling (struct frame *);
3252 void do_pending_window_change (int); 3246 void do_pending_window_change (int);
3253 void change_frame_size (struct frame *, int, int, int, int, int); 3247 void change_frame_size (struct frame *, int, int, int, int, int);
3254 void bitch_at_user (void);
3255 void init_display (void); 3248 void init_display (void);
3256 void syms_of_display (void); 3249 void syms_of_display (void);
3257 extern Lisp_Object Qredisplay_dont_pause; 3250 extern Lisp_Object Qredisplay_dont_pause;
3258 void spec_glyph_lookup_face (struct window *, GLYPH *); 3251 void spec_glyph_lookup_face (struct window *, GLYPH *);
3259 3252