home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / CWEB_2_8 / CWEB / CWEAVE-V.CH < prev    next >
Text File  |  1992-10-02  |  1KB  |  38 lines

  1. This is the change file for CWEB's CWEAVE for VAX/VMS.
  2.  
  3. created:
  4.     1991 JM (John Mulhollen, Science Applications International Corporation)
  5.  
  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)
  12.  
  13. (also modified by Don Knuth to keep version numbers uptodate)
  14.  
  15. @x l.61 (01-FEB-1992 ST)
  16. @d banner "This is CWEAVE (Version 2.8)\n"
  17. @y
  18. @d banner "This is CWEAVE (VAX/VMS Version 2.8)\n"
  19. @z
  20.  
  21. @x l.35 common.h (01-FEB-1992 ST)
  22. #include <stdio.h>
  23. @y
  24. #include stdio /* VMS searches Textlibraries faster */
  25. @z
  26.  
  27. @x l.545 (1991 JM) (01-FEB-1992 ST)
  28. #include "ctype.h"
  29. @y
  30. #include ctype /* VMS searches Textlibraries faster */
  31. @z
  32.  
  33. @x l.550 (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.