summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--MORE.STUFF18
-rw-r--r--src/libs/libgroff/searchpath.cc4
3 files changed, 28 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ba5ad74e..7d4e4d3a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-03-02 Blake McBride <blake@florida-software.com>
+
+ * src/libs/libgroff/searchpath.cc (open_file): Adapting to WinNT.
+
+ * MORE.STUFF: Added website of bell labs and info about plot2dev.
+
2000-03-01 Colin Phipps <crp22@cam.ac.uk>
* src/utils/indxbib/indxbib.cc (main): Use mkstemp() for temporary
diff --git a/MORE.STUFF b/MORE.STUFF
index e2058ede..0c16ed05 100644
--- a/MORE.STUFF
+++ b/MORE.STUFF
@@ -10,6 +10,16 @@ can be found at
http://www.lunabase.org/~faber/Vault/software/grap/
+plot2dev
+--------
+
+This utility program can convert plot graphics to either pic or gremlin
+files. It has been written by Richard Murphey <richard-murphey@rice.edu>
+and Daniel Senderowicz <daniel@synchrods.com> (who has added the gremlin
+driver). The actual version can be found as
+
+ ftp://ftp.ffii.org/pub/groff/plot2dev-x.x.tar.gz
+
miscellaneous
-------------
@@ -21,3 +31,11 @@ miscellaneous
o creating business cards
o using groff to make large format posters for presentations
+
+documentation
+-------------
+
+Many documents related to the original versions of troff, ditroff, pic, and
+others can be accessed from the following web page:
+
+ http://www.cs.bell-labs.com/cm/cs/cstr.html
diff --git a/src/libs/libgroff/searchpath.cc b/src/libs/libgroff/searchpath.cc
index 730b5d99..78b1fcd9 100644
--- a/src/libs/libgroff/searchpath.cc
+++ b/src/libs/libgroff/searchpath.cc
@@ -88,7 +88,11 @@ FILE *search_path::open_file(const char *name, char **pathp)
unsigned namelen = strlen(name);
char *p = dirs;
for (;;) {
+#ifdef _MSC_VER
+ char *end = strchr(p, ';');
+#else
char *end = strchr(p, ':');
+#endif
if (!end)
end = strchr(p, '\0');
int need_slash = end > p && end[-1] != '/';