1 | ;;; fixme.lisp |
---|
2 | ;;; |
---|
3 | ;;; Copyright (C) 2003 Peter Graves |
---|
4 | ;;; $Id: fixme.lisp,v 1.5 2003-09-22 17:20:27 piso Exp $ |
---|
5 | ;;; |
---|
6 | ;;; This program is free software; you can redistribute it and/or |
---|
7 | ;;; modify it under the terms of the GNU General Public License |
---|
8 | ;;; as published by the Free Software Foundation; either version 2 |
---|
9 | ;;; of the License, or (at your option) any later version. |
---|
10 | ;;; |
---|
11 | ;;; This program is distributed in the hope that it will be useful, |
---|
12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | ;;; GNU General Public License for more details. |
---|
15 | ;;; |
---|
16 | ;;; You should have received a copy of the GNU General Public License |
---|
17 | ;;; along with this program; if not, write to the Free Software |
---|
18 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
19 | |
---|
20 | (in-package "SYSTEM") |
---|
21 | |
---|
22 | ;; Should be a special operator. |
---|
23 | (defmacro the (type form) |
---|
24 | form) |
---|
25 | |
---|
26 | ;; Should be a special operator. |
---|
27 | (defmacro declare (&rest ignored) |
---|
28 | nil) |
---|
29 | |
---|
30 | (defmacro declaim (&rest ignored) |
---|
31 | nil) |
---|
32 | |
---|
33 | ;; Should be a special operator. |
---|
34 | (defmacro locally (&rest forms) |
---|
35 | `(progn ,@forms)) |
---|
36 | |
---|
37 | ;; Should be a special operator. |
---|
38 | (defmacro eval-when (situation &rest forms) |
---|
39 | `(progn ,@forms)) |
---|
40 | |
---|
41 | (defun proclaim (decl) |
---|
42 | nil) |
---|
43 | |
---|
44 | (defun compute-restarts (&optional condition) |
---|
45 | nil) |
---|
46 | |
---|
47 | (defun restart-name (restart) |
---|
48 | nil) |
---|
49 | |
---|
50 | (defun warn (&rest args) |
---|
51 | nil) |
---|
52 | |
---|
53 | (defmacro assert (form &rest stuff) |
---|
54 | `(if (not ,form) (error "assertion failed: ~S" ',form))) |
---|
55 | |
---|
56 | (defun compile-file (&rest args) |
---|
57 | (values nil nil nil)) |
---|
58 | |
---|
59 | (defun compile-file-pathname (pathname) |
---|
60 | (concatenate 'string (namestring pathname) ".compiled")) |
---|
61 | |
---|
62 | (defvar *readtable* nil) |
---|
63 | |
---|
64 | (defun copy-readtable (&rest ignored) |
---|
65 | nil) |
---|
66 | |
---|
67 | (defmacro defgeneric (function-name lambda-list &rest options) |
---|
68 | `(prog1 |
---|
69 | (sys::%defun ',function-name ',lambda-list nil))) |
---|