[!pc_system]: Make Fake_Alt_Char_Pairs[] const array

This commit is contained in:
Andrew V. Samoilov 2002-09-14 13:30:56 +00:00
parent 256ec1b728
commit 44ef733433
1 changed files with 4 additions and 3 deletions

View File

@ -784,12 +784,13 @@ void SLsmg_touch_lines (int row, int n)
}
#ifndef pc_system
static char Fake_Alt_Char_Pairs [] = "a:j+k+l+m+q-t+u+v+w+x|n+`+f\\g#~o,<+>.v-^h#0#";
static const char Fake_Alt_Char_Pairs [] = "a:j+k+l+m+q-t+u+v+w+x|n+`+f\\g#~o,<+>.v-^h#0#";
static void init_alt_char_set (void)
{
int i;
unsigned char *p, *pmax, ch;
const unsigned char *p, *pmax;
unsigned char ch;
if (Alt_Char_Set[128] == 128) return;