home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / emacs / 2994 < prev    next >
Encoding:
Text File  |  1992-09-01  |  830 b   |  27 lines

  1. Path: sparky!uunet!usc!cs.utexas.edu!sun-barr!ames!agate!agate.berkeley.edu!dodd
  2. From: dodd@mycenae.cchem (Lawrence R. Dodd)
  3. Newsgroups: comp.emacs
  4. Subject: Re: BAD, bad, bad TABS in emacs
  5. Date: 1 Sep 92 05:34:35
  6. Organization: Dept of Chemical Engineering, UC Berkeley, CA, USA
  7. Lines: 14
  8. Message-ID: <DODD.92Sep1053435@mycenae.cchem>
  9. References: <1992Aug18.115111.17395@lth.se> <mcook.714152831@fendahl.dev.cdx.mot.com>
  10. NNTP-Posting-Host: mycenae.cchem.berkeley.edu
  11. In-reply-to: mcook@fendahl.dev.cdx.mot.com's message of 18 Aug 92 15:47:11 GMT
  12.  
  13.  
  14. >>>>> "Michael" == Michael Cook <mcook@fendahl.dev.cdx.mot.com> writes:
  15.  
  16. >b: search a whole buffer, replacing control-i's with the same scheme
  17. >   of spaces.
  18.  
  19.   Michael>   M-< M-> M-x untabify RET
  20.  
  21. OR:
  22.  
  23. (defun untabify-buffer()
  24.   (interactive)
  25.   (untabify (point-min) (point-max)))
  26.  
  27.