home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 2
/
FFMCD02.bin
/
new
/
dev
/
misc
/
cweb
/
cweave-vms.ch
< prev
next >
Wrap
Text File
|
1993-12-21
|
1KB
|
38 lines
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 l.64 (01-FEB-1992 ST) (25-OCT-1993 AS)
@d banner "This is CWEAVE (Version 3.0)\n"
@y
@d banner "This is CWEAVE (VAX/VMS Version 3.0)\n"
@z
@x l.36 common.h (01-FEB-1992 ST) (25-OCT-1993 AS)
#include <stdio.h>
@y
#include stdio /* VMS searches Textlibraries faster */
@z
@x l.645 (1991 JM) (01-FEB-1992 ST) (25-OCT-1993 AS)
#include <ctype.h>
@y
#include ctype /* VMS searches Textlibraries faster */
@z
@x l.651 (01-FEB-1992 ST) (25-OCT-1993 AS)
@d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
@y
@d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
@z