beta-0.89.2
[luatex.git] / source / texk / web2c / cwebdir / cweav-vms.ch
blobb6f46559cc566fbebdfd1fca32a5d93fdf87627b
1 This is the change file for CWEB's CWEAVE for VAX/VMS.
3 created:
4     1991 JM (John Mulhollen, Science Applications International Corporation)
6 modified:
7     01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
8     > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB
9     > change banner line to include (VAX/VMS)
10     > allow $ in identifiers (*necessary* for VAX/VMS)
11     ? will someone eventally make a CLD interface? (should be easy)
13 (also modified by Don Knuth to keep version numbers uptodate)
15 @x section 1 (01-FEB-1992 ST)
16 @d banner "This is CWEAVE (Version 3.64)\n"
18 @d banner "This is CWEAVE (VAX/VMS Version 3.64)\n"
21 @x section 6 (from common.h) (01-FEB-1992 ST)
22 #include <stdio.h>
24 #include stdio /* VMS searches Textlibraries faster */
27 @x section 38 (1991 JM) (01-FEB-1992 ST)
28 #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
30 #include ctype /* VMS searches Textlibraries faster */
33 @x section 39 (01-FEB-1992 ST)
34 @d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
36 @d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */