diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-12 16:32:14 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-12 16:32:14 +0800 |
commit | 4e6fa990c8f579d92b1cac47ee5ab4905832bde2 (patch) | |
tree | 73480e4d942a1c65e282a0b5e1d5c7d69eb3f1be /mbbsd/edit.c | |
parent | 1465912d8d554cc8b81241b9163be6f72176ffb2 (diff) | |
download | pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.gz pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.bz2 pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.lz pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.xz pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.tar.zst pttbbs-4e6fa990c8f579d92b1cac47ee5ab4905832bde2.zip |
move 232 bytes from data section to rodata section
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2600 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd/edit.c')
-rw-r--r-- | mbbsd/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/edit.c b/mbbsd/edit.c index 29d5a91d..3de5946c 100644 --- a/mbbsd/edit.c +++ b/mbbsd/edit.c @@ -153,7 +153,7 @@ static editor_internal_t *curr_buf = NULL; static const char fp_bak[] = "bak"; -static const char *BIG5[13] = { +static const char * const BIG5[13] = { "¡A¡F¡G¡B¡N¡C¡H¡I¡E¡T¡]¡^¡©¡ª¡«¡¬", "¢b¢c¢d¢e¢f¢g¢h¢i¢j¢k¢l¢m¢n¢o¢pùþ ", "¡³¡ó¡·¡´¡¸¡¹¡¼¡½¡¿¡¶¡¾¡µ¡º¡»¡ð¡ñ", @@ -169,7 +169,7 @@ static const char *BIG5[13] = { "¢¹¢º¢»¢¼¢½¢¾¢¿¢À¢Á¢Â" }; -static const char *BIG_mode[13] = { +static const char * const BIG_mode[13] = { "¼ÐÂI", "¹Ï¶ô", "¼Ð°O", |