picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 95590138b73bb45e5f7ab0c37dc73c9abea64edd
parent 49427e7f8043b1b2e26b2abad81f5d2629b8cf13
Author: Alexander Burger <abu@software-lab.de>
Date:   Mon, 30 May 2011 08:13:41 +0200

Removed "plmod.l", modified "plmod" and added "bin/plmod"
Diffstat:
Abin/plmod | 9+++++++++
Mplmod | 2+-
Dplmod.l | 10----------
3 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/bin/plmod b/bin/plmod @@ -0,0 +1,9 @@ +#!/usr/bin/picolisp /usr/lib/picolisp/lib.l +(on *Dbg) + +(load "@lib/misc.l" "@lib/btree.l" "@lib/db.l" "@lib/pilog.l") +(load "@lib/debug.l" "@lib/edit.l" "@lib/lint.l") + +(noLint 'later (loc "@Prg" later)) + +# vi:et:ts=3:sw=3 diff --git a/plmod b/plmod @@ -1,2 +1,2 @@ #!/bin/sh -exec ${0%/*}/bin/picolisp ${0%/*}/lib.l -"on *Dbg" @ext.l @plmod.l "$@" +exec ${0%/*}/bin/picolisp ${0%/*}/lib.l @bin/plmod "$@" diff --git a/plmod.l b/plmod.l @@ -1,10 +0,0 @@ -# 17jan11abu -# (c) Software Lab. Alexander Burger - -(on *Dbg) - -(load "@lib/debug.l" "@lib/edit.l" "@lib/lint.l") - -(noLint 'later (loc "@Prg" later)) - -# vi:et:ts=3:sw=3