home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / program / indnt16b / diffs next >
Text File  |  1993-10-23  |  2KB  |  81 lines

  1. Only in d:/source.c/gnu/indent-1.6/: .ema
  2. diff -u -r indent-1.6//backup.c d:/source.c/gnu/indent-1.6//backup.c
  3. --- indent-1.6//backup.c    Thu Aug  6 14:41:18 1992
  4. +++ d:/source.c/gnu/indent-1.6//backup.c    Tue Aug 11 21:40:18 1992
  5. @@ -108,11 +108,29 @@
  6.  simple_backup_name (pathname)
  7.       char *pathname;
  8.  {
  9. +#ifdef atarist
  10. +  extern char *strrchr();
  11. +  char *backup_name, *ptr;
  12. +
  13. +  backup_name = xmalloc (strlen (pathname)
  14. +             + strlen (simple_backup_suffix) + 2);
  15. +  sprintf (backup_name, "%s%s", pathname, simple_backup_suffix);
  16. +  if ((ptr = strrchr (backup_name, '.')) != NULL) 
  17. +    {
  18. +      ptr++;
  19. +      if (strlen (ptr) > 3)
  20. +    {
  21. +      *(ptr + 2) = *simple_backup_suffix;
  22. +      *(ptr + 3) = '\0';
  23. +    }
  24. +    }
  25. +#else
  26.    char *backup_name;
  27.  
  28.    backup_name = xmalloc (strlen (pathname)
  29.               + strlen (simple_backup_suffix) + 2);
  30.    sprintf (backup_name, "%s%s", pathname, simple_backup_suffix);
  31. +#endif
  32.    return backup_name;
  33.  }
  34.  
  35. Only in d:/source.c/gnu/indent-1.6/: compile.err
  36. Binary files indent-1.6//indent.inf and d:/source.c/gnu/indent-1.6//indent.inf differ
  37. Only in d:/source.c/gnu/indent-1.6/: indent.ttp
  38. diff -u -r indent-1.6//io.c d:/source.c/gnu/indent-1.6//io.c
  39. --- indent-1.6//io.c    Mon Aug 17 12:09:16 1992
  40. +++ d:/source.c/gnu/indent-1.6//io.c    Tue Aug 25 13:03:56 1992
  41. @@ -450,7 +450,11 @@
  42.    fileptr.size = file_stats.st_size;
  43.    fileptr.data = (char *) xmalloc (file_stats.st_size + 1);
  44.  
  45. +#ifdef atarist
  46. +  if ((fileptr.size = _text_read (fd, fileptr.data, fileptr.size)) < 0)
  47. +#else
  48.    if (read (fd, fileptr.data, fileptr.size) < 0)
  49. +#endif
  50.      sys_error (filename);
  51.  
  52.    if (close (fd) < 0)
  53. @@ -493,6 +497,11 @@
  54.        while (stdinptr.size < size)
  55.      {
  56.        ch = getc (stdin);
  57. +#ifdef atarist
  58. +      /* Discard <Carriage Return> character on input */
  59. +      if (ch == '\r')
  60. +        continue;
  61. +#endif
  62.        if (ch == EOF)
  63.          break;
  64.  
  65. Only in d:/source.c/gnu/indent-1.6/: makefile.st
  66. Only in d:/source.c/gnu/indent-1.6/: readme.st
  67. Only in d:/source.c/gnu/indent-1.6/: tags
  68. diff -u -r indent-1.6//version.h d:/source.c/gnu/indent-1.6//version.h
  69. --- indent-1.6//version.h    Fri Aug 14 11:52:22 1992
  70. +++ d:/source.c/gnu/indent-1.6//version.h    Tue Aug 25 13:11:50 1992
  71. @@ -8,4 +8,8 @@
  72.     version is sufficiently different to simply call it GNU indent.
  73.     jla 11/91 */
  74.  
  75. +#ifdef atarist
  76. +#define VERSION_STRING "GNU indent 1.6 atariST version"
  77. +#else
  78.  #define VERSION_STRING "GNU indent 1.6"
  79. +#endif
  80. Only in indent-1.6/: zmakefil
  81.