comparison src/syntax.h @ 5542:dab422055bab

Correct array bound for syntax_code_spec.
author Stephen J. Turnbull <stephen@xemacs.org>
date Mon, 08 Aug 2011 13:57:20 +0900
parents 308d34e9f07d
children c2301b2c88c8
comparison
equal deleted inserted replaced
5541:ebd367b82ccd 5542:dab422055bab
260 260
261 /* This array, indexed by a character, contains the syntax code which 261 /* This array, indexed by a character, contains the syntax code which
262 that character signifies (as a char). 262 that character signifies (as a char).
263 For example, (enum syntaxcode) syntax_spec_code['w'] is Sword. */ 263 For example, (enum syntaxcode) syntax_spec_code['w'] is Sword. */
264 264
265 extern const unsigned char syntax_spec_code[0400]; 265 extern const unsigned char syntax_spec_code[0200];
266 266
267 /* Indexed by syntax code, give the letter that describes it. */ 267 /* Indexed by syntax code, give the letter that describes it. */
268 268
269 extern const unsigned char syntax_code_spec[]; 269 extern const unsigned char syntax_code_spec[];
270 270