summaryrefslogtreecommitdiff
path: root/web/c_cpp/cweb/examples/wmer-os2.ch
diff options
context:
space:
mode:
Diffstat (limited to 'web/c_cpp/cweb/examples/wmer-os2.ch')
-rw-r--r--web/c_cpp/cweb/examples/wmer-os2.ch21
1 files changed, 21 insertions, 0 deletions
diff --git a/web/c_cpp/cweb/examples/wmer-os2.ch b/web/c_cpp/cweb/examples/wmer-os2.ch
new file mode 100644
index 0000000000..ad40dc496f
--- /dev/null
+++ b/web/c_cpp/cweb/examples/wmer-os2.ch
@@ -0,0 +1,21 @@
+Change file for wmerge, for OS/2 and WinNT and MSVC++ 2.2
+contributed May 1996 by Andreas Scherer, Aaxen University of TeXnology
+(scherer@physik.rwth-aachen.de)
+
+@x Line 594
+An omitted change file argument means that |'/dev/null'| should be used,
+@y
+An omitted change file argument means that |'NUL'| should be used,
+@z
+
+@x Line 620
+ else if (*s=='/') dot_pos=NULL,++s;
+@y
+ else if (*s==':' || *s=='\\' || *s=='/') dot_pos=NULL,++s;
+@z
+
+@x Line 630
+ if (!found_change) strcpy(change_file_name,"/dev/null");
+@y
+ if (!found_change) strcpy(change_file_name,"NUL");
+@z