home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / mutt / wspace.mut < prev   
Text File  |  1988-10-05  |  211b  |  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.