1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
*** pTeX-JIS-patch.orig Wed Jun 5 09:26:06 1996
--- pTeX-JIS-patch Wed Jun 5 09:27:16 1996
***************
*** 10,23 ****
Organization: Tokyo Institute of Tech., Dept. of Computer Science, Japan
Lines: 201
! $@dFC+$G$9!#(J
! ASCII $@HG$N(J pTeX $@$K(J JIS $@%3!<%I%U%!%$%k$r$/$o$;$k$?$a$N%Q%C%A$G$9!#(J
! % cd ptex/ptex; patch -p <$@$3$N%U%!%$%k(J
! $@$H$7!"I,MW$K1~$8$F(J site.h $@$G(J #define JIS $@$r$7$F2<$5$$!#(J
--
! $@;d$K1lAp$N1l$r5[$o$;$J$$$G2<$5$$!#;d$K1lAp$N=-$$$r$D$1$J$$$G2<$5$$!#(J
! $@dFC+M5?M(J ($@O6!?dF$NFq$7$$J}(J)
kagotani@cs.titech.ac.jp
diff -rc ../ptex.orig/ctex/Makefile ./ctex/Makefile
--- 10,23 ----
Organization: Tokyo Institute of Tech., Dept. of Computer Science, Japan
Lines: 201
! $BdFC+$G$9!#(B
! ASCII $BHG$N(B pTeX $B$K(B JIS $B%3!<%I%U%!%$%k$r$/$o$;$k$?$a$N%Q%C%A$G$9!#(B
! % cd ptex/ptex; patch -p <$B$3$N%U%!%$%k(B
! $B$H$7!"I,MW$K1~$8$F(B site.h $B$G(B #define JIS $B$r$7$F2<$5$$!#(B
--
! $B;d$K1lAp$N1l$r5[$o$;$J$$$G2<$5$$!#;d$K1lAp$N=-$$$r$D$1$J$$$G2<$5$$!#(B
! $BdFC+M5?M(B ($BO6!?dF$NFq$7$$J}(B)
kagotani@cs.titech.ac.jp
diff -rc ../ptex.orig/ctex/Makefile ./ctex/Makefile
***************
*** 179,213 ****
+ # define putc(c,fp) putc2(c,fp)
+ #endif
diff -rc ../ptex.orig/site.h ./site.h
! *** ../ptex.orig/site.h Wed Sep 19 18:28:29 1990
! --- ./site.h Tue Nov 6 15:04:21 1990
***************
! *** 40,50 ****
!
! /*
! * Our japanese character coding
! ! * SJIS or EUC or JIS
! */
#define KANJI
! #define SJIS
! #undef EUC
!
! /* Define if we're running under System V */
! #undef SYSV
! --- 40,55 ----
!
! /*
! * Our japanese character coding
! ! * SJIS or EUC
! */
! #define KANJI
! #define SJIS
! #undef EUC
+ /*
+ * You can define JIS independently of SJIS or EUC. It allows you
+ * to feed JIS encoded text files and creates JIS encoded log files.
+ */
+ #undef JIS
/* Define if we're running under System V */
#undef SYSV
--- 179,198 ----
+ # define putc(c,fp) putc2(c,fp)
+ #endif
diff -rc ../ptex.orig/site.h ./site.h
! *** ../ptex.orig/site.h Wed Jun 5 09:15:01 1996
! --- ./site.h Wed Jun 5 09:23:41 1996
***************
! *** 45,50 ****
! --- 45,56 ----
#define KANJI
! #undef SJIS
! #define EUC
+ /*
+ * You can define JIS independently of SJIS or EUC. It allows you
+ * to feed JIS encoded text files and creates JIS encoded log files.
+ */
+ #undef JIS
+ +
/* Define if we're running under System V */
#undef SYSV
|