Commit 2f20d111 authored by Marco Antoniotti's avatar Marco Antoniotti
Browse files

*** empty log message ***

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+28 −0
Original line number Diff line number Diff line
# CVS default ignores begin
tags
TAGS
.make.state
.nse_depinfo
*~
#*
.#*
,*
_$*
*$
*.old
*.bak
*.BAK
*.orig
*.rej
.del-*
*.a
*.olb
*.o
*.obj
*.so
*.exe
*.Z
*.elc
*.ln
core
# CVS default ignores end

definer-pkg.lisp

0 → 100644
+30 −0
Original line number Diff line number Diff line
;;; -*- Mode: Lisp -*-

;;; definer-pkg.lisp --

;;; Copyright (c) 2003-2004 Marco Antoniotti, All rigths reserved.
;;;
;;; Permission to use, modify, and redistribute this code is hereby
;;; granted.
;;; The code is provided AS IS with NO warranty whatsoever. The author
;;; will not be held liable etc etc etc etc etc.


(defpackage "NET.NTUNIOTT.CL.EXT.SYNTAX.DEFINER" (:use "COMMON-LISP")
  (:nicknames  "CL.EXT.SYNTAX.DEFINER" "DEFINER")
  (:export
   "DEF"
   "BUILD-DEFINITION-FORM")

  (:export ; Names missing from the CL package.
   "VAR"
   "PARAMETER"
   "CONSTANT"

   "MACRO"
   "GENERIC"

   "DEFINER"
   ))

;;; end of file -- definer-pkg.lisp --