home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / editor / me_cd.arc / WSPACE.MUT < prev   
Encoding:
Text File  |  1988-10-05  |  211 b   |  8 lines

  1.   ;; wspace.mut : routines that deal with whitespace.
  2.   ;; C Durland
  3.  
  4. (defun
  5.   skip-whitespace HIDDEN { (while (isspace) (next-character)) }
  6.   kill-whitespace     { (while (isspace) (delete-character)) } 
  7. )
  8.