1This is the change file for CWEB's CWEAVE for VAX/VMS.
2
3created:
4    1991 JM (John Mulhollen, Science Applications International Corporation)
5
6modified:
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)
12
13(also modified by Don Knuth to keep version numbers uptodate)
14
15@x section 1 (01-FEB-1992 ST)
16@d banner "This is CWEAVE (Version 3.64)\n"
17@y
18@d banner "This is CWEAVE (VAX/VMS Version 3.64)\n"
19@z
20
21@x section 6 (from common.h) (01-FEB-1992 ST)
22#include <stdio.h>
23@y
24#include stdio /* VMS searches Textlibraries faster */
25@z
26
27@x section 38 (1991 JM) (01-FEB-1992 ST)
28#include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
29@y
30#include ctype /* VMS searches Textlibraries faster */
31@z
32
33@x section 39 (01-FEB-1992 ST)
34@d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
35@y
36@d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
37@z
38