tentative fix for issue 3 (ex 53)
[mplib] / src / texk / web2c / cwebdir / ctang-vms.ch
1 This is the change file for CWEB's CTANGLE for VAX/VMS.
2
3 created:
4     01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
5     > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB
6     > change banner line to include (VAX/VMS)
7     ? will someone make a CLD interface? (should be easy)
8
9 (also modified by Don Knuth to keep version numbers uptodate)
10 (these changes not necessary for initial bootstrapping)
11
12 @x section 1 (01-FEB-1992 ST)
13 @d banner "This is CTANGLE (Version 3.64)\n"
14 @y
15 @d banner "This is CTANGLE (VAX/VMS Version 3.64)\n"
16 @z
17
18 @x section 6 (from common.h) (01-FEB-1992 ST)
19 #include <stdio.h>
20 @y
21 #include stdio /* VMS searches Textlibraries faster */
22 @z
23
24 @x section 62 (01-FEB-1992 ST)
25 #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
26 @y
27 #include ctype /* definition of |isalpha|, |isdigit| and so on */
28                /* VMS searches text libraries faster */
29 @z
30
31 @x section 63 (01-FEB-1992 ST)
32 @d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
33 @y
34 @d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
35 @z