home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / emacs-18.59src.lha / emacs-18.59 / amiga / contrib / chopps / lisp / fix-endif-no-comment.el < prev   
Encoding:
Text File  |  1993-03-19  |  362 b   |  14 lines

  1. ;;
  2. ;;  This small bit of lisp will fix the so common #endif somthing
  3. ;; (with no comment) code.
  4. ;;
  5.  
  6. (defun fix-endif-no-comment ()
  7.   (interactive)
  8.   (save-excursion
  9.     (beginning-of-buffer)
  10.     (replace-regexp "^#endif \\(.*\\)" "#endif /* \\1 */")
  11.     (beginning-of-buffer)
  12.     (replace-regexp "^#endif /\\* /\\* \\(.*\\) \\*/ \\*/" "#endif /* \\1 */")))
  13.  
  14.