summaryrefslogtreecommitdiff
path: root/web/c_cpp/cweb/cweav-vms.ch
blob: b6f46559cc566fbebdfd1fca32a5d93fdf87627b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
This is the change file for CWEB's CWEAVE for VAX/VMS.

created:
    1991 JM (John Mulhollen, Science Applications International Corporation)

modified:
    01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
    > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB
    > change banner line to include (VAX/VMS)
    > allow $ in identifiers (*necessary* for VAX/VMS)
    ? will someone eventally make a CLD interface? (should be easy)

(also modified by Don Knuth to keep version numbers uptodate)

@x section 1 (01-FEB-1992 ST)
@d banner "This is CWEAVE (Version 3.64)\n"
@y
@d banner "This is CWEAVE (VAX/VMS Version 3.64)\n"
@z

@x section 6 (from common.h) (01-FEB-1992 ST)
#include <stdio.h>
@y
#include stdio /* VMS searches Textlibraries faster */
@z

@x section 38 (1991 JM) (01-FEB-1992 ST)
#include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
@y
#include ctype /* VMS searches Textlibraries faster */
@z

@x section 39 (01-FEB-1992 ST)
@d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
@y
@d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
@z