home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / rexx / deletetabs.se < prev    next >
Encoding:
Text File  |  1996-12-24  |  239 b   |  13 lines

  1. /* rexx macro to replace tabs with spaces throughout file */
  2. /* Tab mode must be set to EXPAND TO SPACES for this to work */
  3. 'BT'
  4. 'SE "\\t\n"'
  5. do forever
  6.  options results
  7.  'GE'
  8.  options
  9.  if result ~= 0 then exit(0)
  10.  'DC "\t"'
  11.  'PC SA'
  12. end
  13.