diff -r -c3 texi2roff-2.0.bak/Makefile texi2roff-2.0/Makefile *** texi2roff-2.0.bak/Makefile Sun Oct 6 05:56:07 2002 --- texi2roff-2.0/Makefile Sun Oct 6 05:52:20 2002 *************** *** 8,14 **** # use -Dvoid=int for System III and V7 # problems have been reported for -O with Sun4's, SunOS 4.0.1 ! CFLAGS = -O -s # CFLAGS = -g # CFLAGS = -p # CFLAGS = -ql --- 8,14 ---- # use -Dvoid=int for System III and V7 # problems have been reported for -O with Sun4's, SunOS 4.0.1 ! CFLAGS = -O2 -g -Wall # CFLAGS = -g # CFLAGS = -p # CFLAGS = -ql *************** *** 16,22 **** OBJECTS = texi2roff.o table.o translate.o items.o texi2roff: $(OBJECTS) ! $(CC) -o $@ $(CFLAGS) $(OBJECTS) -lc_s -link -z texi2roff.o : texi2roff.h --- 16,22 ---- OBJECTS = texi2roff.o table.o translate.o items.o texi2roff: $(OBJECTS) ! $(CC) -o $@ $(CFLAGS) $(OBJECTS) texi2roff.o : texi2roff.h Binary files texi2roff-2.0.bak/texi2roff and texi2roff-2.0/texi2roff differ diff -r -c3 texi2roff-2.0.bak/translate.c texi2roff-2.0/translate.c *** texi2roff-2.0.bak/translate.c Sun Oct 6 05:56:07 2002 --- texi2roff-2.0/translate.c Sun Oct 6 05:53:25 2002 *************** *** 522,528 **** set_vec[0] = 1; inited_set = 1; } ! while (set_vec[*str] == 0) ++str; return str; } --- 522,528 ---- set_vec[0] = 1; inited_set = 1; } ! while (set_vec[(unsigned char)*str] == 0) ++str; return str; }