Commit 799a67bb authored by Simon Middleton's avatar Simon Middleton
Browse files

Corrected Big5 definition number in charsets.h.

Fixed Big5 encoding_write (checked for !cc rather than cc).
Removed unictype.c which is built from mkunictype.

Version 0.13. Tagged as 'Unicode-0_13'
parent 407bccff
...@@ -128,7 +128,7 @@ LIBS = ${TARGET} ${TARGETD} ${TARGETZ} ...@@ -128,7 +128,7 @@ LIBS = ${TARGET} ${TARGETD} ${TARGETZ}
# #
# Rule patterns # Rule patterns
# #
.SUFFIXES: .oz .od .SUFFIXES: .o .oz .od .c .h .s
.c.o:; ${CC} ${CCFLAGS} -DROM=0 -DDEBUG=0 -ff -o $@ $< .c.o:; ${CC} ${CCFLAGS} -DROM=0 -DDEBUG=0 -ff -o $@ $<
.c.oz:; ${CC} ${CCFLAGS} -DROM=1 -DDEBUG=0 -ff -zM -o $@ $< .c.oz:; ${CC} ${CCFLAGS} -DROM=1 -DDEBUG=0 -ff -zM -o $@ $<
.c.od:; ${CC} ${CCFLAGS} -DROM=0 -DDEBUG=1 -o $@ $< .c.od:; ${CC} ${CCFLAGS} -DROM=0 -DDEBUG=1 -o $@ $<
...@@ -137,9 +137,9 @@ LIBS = ${TARGET} ${TARGETD} ${TARGETZ} ...@@ -137,9 +137,9 @@ LIBS = ${TARGET} ${TARGETD} ${TARGETZ}
.cmhg.h:; ${CM} ${CMFLAGS} -d $@ $< .cmhg.h:; ${CM} ${CMFLAGS} -d $@ $<
# #
# build a the library: # build the library:
# #
all: ${LIBS} all: ${LIBS} unictype.c
# #
# RISC OS ROM build rules: # RISC OS ROM build rules:
...@@ -198,15 +198,10 @@ unictype.c: mkunictype data.UNIDATA2 ...@@ -198,15 +198,10 @@ unictype.c: mkunictype data.UNIDATA2
mkunictype: mkunictype.o ${CLIB} mkunictype: mkunictype.o ${CLIB}
${LD} -o $@ mkunictype.o ${CLIB} ${LD} -o $@ mkunictype.o ${CLIB}
unictype.o od.unictype oz.unictype: unictype.c
links: links:
./mklinks ./mklinks
echo Made links echo Made links
#od.unictype: unictype.c
# ${CC} ${CCFLAGS} -DROM=0 -DDEBUG=1 -o $@ unictype.c
# #
# Final link # Final link
# #
......
/* (0.12) /* (0.13)
* *
* This file is automatically maintained by srccommit, do not edit manually. * This file is automatically maintained by srccommit, do not edit manually.
* *
*/ */
#define Module_MajorVersion_CMHG 0.12 #define Module_MajorVersion_CMHG 0.13
#define Module_MinorVersion_CMHG #define Module_MinorVersion_CMHG
#define Module_Date_CMHG 05 Jan 1998 #define Module_Date_CMHG 14 Jan 1998
#define Module_MajorVersion "0.12" #define Module_MajorVersion "0.13"
#define Module_MinorVersion "" #define Module_MinorVersion ""
#define Module_Date "05 Jan 1998" #define Module_Date "14 Jan 1998"
...@@ -161,7 +161,7 @@ static int bigfive_write(EncodingPriv *e, UCS4 u, char **bf, int *bufsize) ...@@ -161,7 +161,7 @@ static int bigfive_write(EncodingPriv *e, UCS4 u, char **bf, int *bufsize)
return 0; return 0;
*(*bf)++ = c; *(*bf)++ = c;
if (!cc) if (cc)
*(*bf)++ = cc; *(*bf)++ = cc;
return 1; return 1;
......
This diff is collapsed.
...@@ -223,7 +223,7 @@ ...@@ -223,7 +223,7 @@
#define csMicrosoftPublishing 2023 #define csMicrosoftPublishing 2023
#define csWindows31J 2024 #define csWindows31J 2024
#define csGB2312 2025 #define csGB2312 2025
#define csBig5 2085 #define csBig5 2026
#define csWindows1250 2250 #define csWindows1250 2250
#define csWindows1251 2251 #define csWindows1251 2251
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment