• R/O
  • SSH

wp2latex: Commit

WP2LaTeX sources.


Commit MetaInfo

Revision26057d50ad62213e73db1c62982351e2aea9befa (tree)
Zeit2022-12-01 20:42:35
AutorFojtik
CommiterFojtik

Log Message

3.111

Ändern Zusammenfassung

Diff

diff -r 0623e1671274 -r 26057d50ad62 trunk/doc/wp2latex.man
--- a/trunk/doc/wp2latex.man Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/doc/wp2latex.man Thu Dec 01 12:42:35 2022 +0100
@@ -1,4 +1,4 @@
1-.TH Wp2LaTeX 1 "5 Nov 2022"
1+.TH Wp2LaTeX 1 "1 Dec 2022"
22 .SH NAME
33 wp2latex \- Converter from MAC WP1.x, WP2,3,4.x, PC WP4.x, WP5.x, WP6.x .. 11.x to LaTeX
44 .SH SYNOPSIS
@@ -247,11 +247,7 @@
247247 .UE
248248
249249 .SH AUTHORS
250-Somebody at Eindhoven Univ of Techn wrote a WordPerfect 5.0 to LaTeX
251-conversion program.
252-Dirk Lellinger wrote formulas parser, but I had to rewrite it srom scratch.
253-Now it works much more better.
254-This Program was rewritten by last author Jaroslav Fojtik, Email
250+This Program has been rewritten by last author Jaroslav Fojtik, Email
255251 (try one of these): fojtik@penguin.cz, JaFojtik@yandex.com.
256252
257253 There are some other ports of this code. But now I hope, that
diff -r 0623e1671274 -r 26057d50ad62 trunk/instaler/WP2LaTeX.iss
--- a/trunk/instaler/WP2LaTeX.iss Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/instaler/WP2LaTeX.iss Thu Dec 01 12:42:35 2022 +0100
@@ -1,7 +1,7 @@
11 ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
22
33 #define MyAppName "WP2LaTeX"
4-#define MyAppVersion "3.110"
4+#define MyAppVersion "3.111"
55 #define MyAppPublisher "F&T Soft"
66 #define MyAppURL "http://www.penguin.cz/~fojtik/wp2latex/"
77
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/atoms/include/std_str.h
--- a/trunk/sources.cc/atoms/include/std_str.h Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/atoms/include/std_str.h Thu Dec 01 12:42:35 2022 +0100
@@ -67,7 +67,7 @@
6767 #ifdef __Safe_strlen
6868 #define StrLen strlen
6969 #else
70- int StrLen(const char *str);
70+ unsigned StrLen(const char *str);
7171 #endif
7272
7373
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/atoms/std_str.cc
--- a/trunk/sources.cc/atoms/std_str.cc Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/atoms/std_str.cc Thu Dec 01 12:42:35 2022 +0100
@@ -100,7 +100,7 @@
100100
101101 //This function fixes up the error in measuring a length of the NULL string
102102 #ifndef __Safe_strlen
103-int StrLen(const char *str)
103+unsigned StrLen(const char *str)
104104 {
105105 if(str==NULL) return(0);
106106 return(strlen(str));
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/atoms/strings.cc
--- a/trunk/sources.cc/atoms/strings.cc Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/atoms/strings.cc Thu Dec 01 12:42:35 2022 +0100
@@ -1,5 +1,5 @@
11 /****************************************************
2-* unit: strings release 0.24 *
2+* unit: strings release 0.25 *
33 * purpose: general manipulation with text strings *
44 * Licency: GPL or LGPL *
55 * Copyright: (c) 1998-2021 Jaroslav Fojtik *
@@ -283,7 +283,7 @@
283283 /// Operator for filling string from char *
284284 string &string::operator=(const char *str)
285285 {
286-int len;
286+unsigned len;
287287
288288 if((len=::StrLen(str))==0)
289289 {
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/images/imgsupp.h.in
--- a/trunk/sources.cc/images/imgsupp.h.in Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/images/imgsupp.h.in Thu Dec 01 12:42:35 2022 +0100
@@ -141,4 +141,4 @@
141141
142142 #ifndef SupportFTG
143143 #define SupportFTG 10
144-#endif
\ No newline at end of file
144+#endif
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/pass1wrd.cc
--- a/trunk/sources.cc/pass1wrd.cc Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/pass1wrd.cc Thu Dec 01 12:42:35 2022 +0100
@@ -1374,7 +1374,8 @@
13741374 &cq->clx, cq->bteChpx, cq->posChpx,
13751375 cq->char_intervals, cq->wpd);
13761376 if(cq->log)
1377- fprintf(cq->log,_("\nChar begins at %lXh ends %lXh, pos is %lXh "), cq->char_fcFirst, cq->char_fcLim, (unsigned long)cq->ActualPos);
1377+ fprintf(cq->log,_("\nChar begins at %lXh ends %lXh, pos is %lXh "),
1378+ (unsigned long)cq->char_fcFirst, (unsigned long)cq->char_fcLim, (unsigned long)cq->ActualPos);
13781379 if (0 == cq->char_pendingclose)
13791380 { /* if there's no character run open, but there should be then I believe that the fcFirst search
13801381 has failed me, so I set it to now. I need to investigate this further. */
diff -r 0623e1671274 -r 26057d50ad62 trunk/sources.cc/wp2latex.h
--- a/trunk/sources.cc/wp2latex.h Tue Nov 29 23:41:04 2022 +0100
+++ b/trunk/sources.cc/wp2latex.h Thu Dec 01 12:42:35 2022 +0100
@@ -17,8 +17,8 @@
1717
1818 #define LineLength 80 /* Split lines after more than LineLength charcters */
1919
20-#define VersionWP2L "3.pre111"
21-#define VersionDate "29 Nov 2022" /* day (space) month (space) full year */
20+#define VersionWP2L "3.111"
21+#define VersionDate "1 Dec 2022" /* day (space) month (space) full year */
2222
2323
2424 /* Constants for a flag InputPS */
Show on old repository browser