beta-0.89.2
[luatex.git] / source / texk / web2c / cwebdir / ctang-vms.ch
blob7e538abc27f0e63a84c9adc9971f629d8a3d10a7
1 This is the change file for CWEB's CTANGLE for VAX/VMS.
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)
9 (also modified by Don Knuth to keep version numbers uptodate)
10 (these changes not necessary for initial bootstrapping)
12 @x section 1 (01-FEB-1992 ST)
13 @d banner "This is CTANGLE (Version 3.64)\n"
15 @d banner "This is CTANGLE (VAX/VMS Version 3.64)\n"
18 @x section 6 (from common.h) (01-FEB-1992 ST)
19 #include <stdio.h>
21 #include stdio /* VMS searches Textlibraries faster */
24 @x section 62 (01-FEB-1992 ST)
25 #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
27 #include ctype /* definition of |isalpha|, |isdigit| and so on */
28                /* VMS searches text libraries faster */
31 @x section 63 (01-FEB-1992 ST)
32 @d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
34 @d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */