Commit 14053679 by Richard Kenner

(is_space): Now external.

(is_hor_space): Now static.

From-SVN: r13653
parent a1d7ffe3
...@@ -1020,9 +1020,9 @@ U_CHAR is_idchar[256]; ...@@ -1020,9 +1020,9 @@ U_CHAR is_idchar[256];
/* table to tell if char can be first char of a c identifier. */ /* table to tell if char can be first char of a c identifier. */
U_CHAR is_idstart[256]; U_CHAR is_idstart[256];
/* table to tell if c is horizontal space. */ /* table to tell if c is horizontal space. */
U_CHAR is_hor_space[256]; static U_CHAR is_hor_space[256];
/* table to tell if c is horizontal or vertical space. */ /* table to tell if c is horizontal or vertical space. */
static U_CHAR is_space[256]; U_CHAR is_space[256];
/* names of some characters */ /* names of some characters */
static char *char_name[256]; static char *char_name[256];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment