home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cweb28.zip / ctangle-vms.ch < prev    next >
Text File  |  1992-10-02  |  1KB  |  36 lines

  1. This is the change file for CWEB's CTANGLE for VAX/VMS.
  2.  
  3. created:
  4.     01-FEB-1992 ST (Stephan Trebels <trebels@ams02.dnet.gwdg.de>)
  5.     > include ctype,stdio from textlibrary SYS$SHARE:VAXCDEF.TLB
  6.     > change banner line to include (VAX/VMS)
  7.     ? will someone make a CLD interface? (should be easy)
  8.  
  9. (also modified by Don Knuth to keep version numbers uptodate)
  10. (these changes not necessary for initial bootstrapping)
  11.  
  12. @x l.54 (01-FEB-1992 ST)
  13. @d banner "This is CTANGLE (Version 2.8)\n"
  14. @y
  15. @d banner "This is CTANGLE (VAX/VMS Version 2.8)\n"
  16. @z
  17.  
  18. @x l.35 common.h (01-FEB-1992 ST)
  19. #include <stdio.h>
  20. @y
  21. #include stdio /* VMS searches Textlibraries faster */
  22. @z
  23.  
  24. @x l.744 (01-FEB-1992 ST)
  25. #include <ctype.h> /* definition of |isalpha|, |isdigit| and so on */
  26. @y
  27. #include ctype /* definition of |isalpha|, |isdigit| and so on */
  28.                /* VMS searches text libraries faster */
  29. @z
  30.  
  31. @x l.750 (01-FEB-1992 ST)
  32. @d isxalpha(c) ((c)=='_') /* non-alpha character allowed in identifier */
  33. @y
  34. @d isxalpha(c) ((c)=='_' || (c)=='$') /* non-alpha characters allowed in id */
  35. @z
  36.