/[gcl]/gcl/o/character.d
ViewVC logotype

Diff of /gcl/o/character.d

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by camm, Thu Nov 6 16:08:08 2003 UTC revision 1.9 by camm, Fri Jun 10 15:13:53 2005 UTC
# Line 581  gcl_init_character() Line 581  gcl_init_character()
581          int i;          int i;
582    
583          for (i = 0;  i < CHCODELIM;  i++) {          for (i = 0;  i < CHCODELIM;  i++) {
584                  character_table[i].t = (short)t_character;            object x=(object)(character_table+i);
585                  character_table[i].ch_code = i;            set_type_of(x,t_character);
586                  character_table[i].ch_font = 0;            x->ch.ch_code = i;
587                  character_table[i].ch_bits = 0;            x->ch.ch_font = 0;
588              x->ch.ch_bits = 0;
589          }          }
590  #ifdef AV  #ifdef AV
591          for (i = -128;  i < 0;  i++) {          for (i = -128;  i < 0;  i++) {
592                  character_table[i].t = (short)t_character;            object x=(object)(character_table+i);
593                  character_table[i].ch_code = i+CHCODELIM;            set_type_of(x,t_character);
594                  character_table[i].ch_font = 0;            x->ch.ch_code = i+CHCODELIM;
595                  character_table[i].ch_bits = 0;            x->ch.ch_font = 0;
596              x->ch.ch_bits = 0;
597          }          }
598  #endif  #endif
599    

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26