Release 1.3.1.
[skel] / skel.el.in
index 154eb1f..b56afe0 100644 (file)
@@ -1,7 +1,5 @@
 ;;; -*-emacs-lisp-*-
 ;;;
-;;; $Id: skel.el.in,v 1.5 2004/04/08 01:36:28 mdw Exp $
-;;;
 ;;; Filling in skeletons
 ;;;
 ;;; (c) 1998 Mark Wooding
@@ -82,7 +80,9 @@
       (let ((n (car l)))
        (if (and (file-readable-p n) (file-regular-p n))
            (if all
-               (skel-do-find (cdr l) all (cons (abbreviate-file-name n) acc))
+               (skel-do-find (cdr l)
+                             all
+                             (cons (abbreviate-file-name n) acc))
              (abbreviate-file-name n))
          (skel-do-find (cdr l) all acc)))
     acc))
 
     (funcall switch (find-file-noselect name))
     (kill-region (point-min) (point-max))
-    (insert-file skel)
+    (insert-file-contents skel)
 
     ;; --- Mangle the skeleton data in the file ---