aboutsummaryrefslogtreecommitdiffstats
path: root/src/disptab.h
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>1997-04-07 07:22:22 +0000
committerKenichi Handa <[email protected]>1997-04-07 07:22:22 +0000
commit1e05cf1d14de8a13a4091507edc1ecac36fee1f4 (patch)
treef39addd6ac40dcb0c6538ae9779cd406c196564a /src/disptab.h
parentec3bb06866ac46b4a5b5c8262fbd79f53fc770ad (diff)
(disp_char_vector): Extern it.
(DISP_CHAR_VECTOR): Handle multibyte characters.
Diffstat (limited to 'src/disptab.h')
-rw-r--r--src/disptab.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/disptab.h b/src/disptab.h
index 6b2f5f05d5..c947c5107a 100644
--- a/src/disptab.h
+++ b/src/disptab.h
@@ -33,8 +33,10 @@ Boston, MA 02111-1307, USA. */
#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
+extern Lisp_Object disp_char_vector ();
+
#define DISP_CHAR_VECTOR(dp, c) \
- (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : Qnil)
+ (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : disp_char_vector ((dp), (c)))
/* Defined in window.c. */
extern struct Lisp_Char_Table *window_display_table ();