comparison src/globals.h @ 714:0f9f4761ad9c v7.0216

updated for version 7.0216
author vimboss
date Mon, 06 Mar 2006 23:29:24 +0000
parents 111b7dcc8a17
children 07f7b4a7755c
comparison
equal deleted inserted replaced
713:0c381fb7846c 714:0f9f4761ad9c
51 * NUL when the character in ScreenLines[] is to be used (ASCII char). 51 * NUL when the character in ScreenLines[] is to be used (ASCII char).
52 * The composing characters are to be drawn on top of the original character. 52 * The composing characters are to be drawn on top of the original character.
53 * Note: These three are only allocated when enc_utf8 is set! 53 * Note: These three are only allocated when enc_utf8 is set!
54 */ 54 */
55 EXTERN u8char_T *ScreenLinesUC INIT(= NULL); /* decoded UTF-8 characters */ 55 EXTERN u8char_T *ScreenLinesUC INIT(= NULL); /* decoded UTF-8 characters */
56 EXTERN u8char_T *ScreenLinesC1 INIT(= NULL); /* first composing char */ 56 EXTERN u8char_T *ScreenLinesC[MAX_MCO]; /* composing characters */
57 EXTERN u8char_T *ScreenLinesC2 INIT(= NULL); /* second composing char */ 57 EXTERN int Screen_mco INIT(= 0); /* value of p_mco used when
58 allocating ScreenLinesC[] */
58 59
59 /* Only used for euc-jp: Second byte of a character that starts with 0x8e. 60 /* Only used for euc-jp: Second byte of a character that starts with 0x8e.
60 * These are single-width. */ 61 * These are single-width. */
61 EXTERN schar_T *ScreenLines2 INIT(= NULL); 62 EXTERN schar_T *ScreenLines2 INIT(= NULL);
62 #endif 63 #endif