aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/disptab.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/disptab.h b/src/disptab.h
index 2edf6dcdf65..1fb6307a73a 100644
--- a/src/disptab.h
+++ b/src/disptab.h
@@ -33,16 +33,16 @@ Boston, MA 02111-1307, USA. */
33#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4]) 33#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
34#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5]) 34#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
35 35
36extern Lisp_Object disp_char_vector (); 36extern Lisp_Object disp_char_vector P_ ((struct Lisp_Char_Table *, int));
37 37
38#define DISP_CHAR_VECTOR(dp, c) \ 38#define DISP_CHAR_VECTOR(dp, c) \
39 (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : disp_char_vector ((dp), (c))) 39 (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : disp_char_vector ((dp), (c)))
40 40
41/* Defined in window.c. */ 41/* Defined in window.c. */
42extern struct Lisp_Char_Table *window_display_table (); 42extern struct Lisp_Char_Table *window_display_table P_ ((struct window *));
43 43
44/* Defined in indent.c. */ 44/* Defined in indent.c. */
45extern struct Lisp_Char_Table *buffer_display_table (); 45extern struct Lisp_Char_Table *buffer_display_table P_ ((void));
46 46
47/* Display table to use for vectors that don't specify their own. */ 47/* Display table to use for vectors that don't specify their own. */
48extern Lisp_Object Vstandard_display_table; 48extern Lisp_Object Vstandard_display_table;
@@ -99,8 +99,3 @@ extern Lisp_Object Vglyph_table;
99#define NULL_GLYPH 00 99#define NULL_GLYPH 00
100 100
101#define GLYPH_FROM_CHAR(c) (c) 101#define GLYPH_FROM_CHAR(c) (c)
102
103extern int glyphlen ();
104extern void str_to_glyph_cpy ();
105extern void str_to_glyph_ncpy ();
106extern void glyph_to_str_cpy ();