comparison src/syntax.c @ 298:f9de3e679a04

updated for version 7.0078
author vimboss
date Wed, 01 Jun 2005 21:56:33 +0000
parents 1c1cbdc42f75
children 006e9c8a6a8a
comparison
equal deleted inserted replaced
297:9a1c2a8186b7 298:f9de3e679a04
7430 /* 7430 /*
7431 * Table with the specifications for an attribute number. 7431 * Table with the specifications for an attribute number.
7432 * Note that this table is used by ALL buffers. This is required because the 7432 * Note that this table is used by ALL buffers. This is required because the
7433 * GUI can redraw at any time for any buffer. 7433 * GUI can redraw at any time for any buffer.
7434 */ 7434 */
7435 garray_T term_attr_table = {0, 0, 0, 0, NULL}; 7435 static garray_T term_attr_table = {0, 0, 0, 0, NULL};
7436 7436
7437 #define TERM_ATTR_ENTRY(idx) ((attrentry_T *)term_attr_table.ga_data)[idx] 7437 #define TERM_ATTR_ENTRY(idx) ((attrentry_T *)term_attr_table.ga_data)[idx]
7438 7438
7439 garray_T cterm_attr_table = {0, 0, 0, 0, NULL}; 7439 static garray_T cterm_attr_table = {0, 0, 0, 0, NULL};
7440 7440
7441 #define CTERM_ATTR_ENTRY(idx) ((attrentry_T *)cterm_attr_table.ga_data)[idx] 7441 #define CTERM_ATTR_ENTRY(idx) ((attrentry_T *)cterm_attr_table.ga_data)[idx]
7442 7442
7443 #ifdef FEAT_GUI 7443 #ifdef FEAT_GUI
7444 garray_T gui_attr_table = {0, 0, 0, 0, NULL}; 7444 static garray_T gui_attr_table = {0, 0, 0, 0, NULL};
7445 7445
7446 #define GUI_ATTR_ENTRY(idx) ((attrentry_T *)gui_attr_table.ga_data)[idx] 7446 #define GUI_ATTR_ENTRY(idx) ((attrentry_T *)gui_attr_table.ga_data)[idx]
7447 #endif 7447 #endif
7448 7448
7449 /* 7449 /*