r11233: convert from sb-executable to save-lisp-and-die
[vcs-tree.git] / loader.lisp
diff --git a/loader.lisp b/loader.lisp
deleted file mode 100644 (file)
index 7c1833b..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: cl-user -*-
-;;;; *************************************************************************
-;;;; FILE IDENTIFICATION
-;;;;
-;;;; Name:          loader.lisp
-;;;; Purpose:       loads any required modules, contains RUN function
-;;;; Programmer:    Kevin M. Rosenberg
-;;;; Date Started:  Sep 2003
-;;;;
-;;;; $Id$
-;;;; *************************************************************************
-
-(in-package :cl-user)
-
-;;; Nothing to load since the executable contains all of the required
-;;; fasls
-
-
-(defun run ()
-  (handler-case
-      (funcall #'vcs-tree::main (list* "vcs-tree" (cdr *posix-argv*)))
-    (error (c)
-      (format *error-output* "vcs-tree failed due to error:~%  ~A~%" c)
-      (sb-ext:quit :unix-status 1))))