home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cweb28.zip / common.ch < prev    next >
Text File  |  1992-12-29  |  2KB  |  71 lines

  1. This is the change file for CWEB's CWEAVE for EMX/GCC
  2.  
  3. created:
  4.     1992 TSM (Thomas S McMillan, Applied Innovation)
  5.  
  6. @x l.140
  7. than |buf_size|, so that |buffer[buf_size-1]| is never filled.
  8. @y l.140
  9. than |buf_size_|, so that |buffer[buf_size_-1]| is never filled.
  10. @z
  11.  
  12. @x l.142
  13. Since |buf_size| is strictly less than |long_buf_size|,
  14. @y l.142
  15. Since |buf_size_| is strictly less than |long_buf_size|,
  16. @z
  17.  
  18. @x l.146
  19. @d buf_size 100 /* for \.{WEAVE} and \.{TANGLE} */
  20. @y l.146
  21. @d buf_size_ 100 /* for \.{WEAVE} and \.{TANGLE} */
  22. @z
  23.  
  24. @x l.151
  25. char *buffer_end=buffer+buf_size-2; /* end of |buffer| */
  26. @y l.151
  27. char *buffer_end=buffer+buf_size_-2; /* end of |buffer| */
  28. @z
  29.  
  30. @x l.230
  31. char change_buffer[buf_size]; /* next line of |change_file| */
  32. @y l.230
  33. char change_buffer[buf_size_]; /* next line of |change_file| */
  34. @z
  35.  
  36. @x l.757
  37. @d prefix 3 /* the first name is a proper prefix of the second */
  38. @y l.757
  39. @d prefix_ 3 /* the first name is a proper prefix of the second */
  40. @z
  41.  
  42. @x l.769
  43.   else if (j==j1) return prefix;
  44. @y l.769
  45.   else if (j==j1) return prefix_;
  46. @z
  47.  
  48. @x l.910
  49.   case prefix:
  50. @y l.910
  51.   case prefix_:
  52. @z
  53.  
  54. @x l.968
  55.       else return (q->byte_start==(q+1)->byte_start)? equal: prefix;
  56. @y l.968
  57.       else return (q->byte_start==(q+1)->byte_start)? equal: prefix_;
  58. @z
  59.  
  60. @x l.1143
  61. An omitted change file argument means that |"/dev/null"| should be used,
  62. @y l.1143
  63. An omitted change file argument means that |"NUL"| should be used,
  64. @z
  65.  
  66. @x l.1176
  67.   if (!found_change) strcpy(change_file_name,"/dev/null");
  68. @y l.1176
  69.   if (!found_change) strcpy(change_file_name,"NUL");
  70. @z
  71.