1 | ;;; fixme.lisp |
---|
2 | ;;; |
---|
3 | ;;; Copyright (C) 2003 Peter Graves |
---|
4 | ;;; $Id: fixme.lisp,v 1.4 2003-08-16 13:24:35 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 | ;; Should be a special operator. |
---|
21 | (defmacro the (type form) |
---|
22 | form) |
---|
23 | |
---|
24 | ;; Should be a special operator. |
---|
25 | (defmacro declare (&rest ignored) |
---|
26 | nil) |
---|
27 | |
---|
28 | (defmacro declaim (&rest ignored) |
---|
29 | nil) |
---|
30 | |
---|
31 | ;; Should be a special operator. |
---|
32 | (defmacro locally (&rest forms) |
---|
33 | `(progn ,@forms)) |
---|
34 | |
---|
35 | ;; Should be a special operator. |
---|
36 | (defmacro eval-when (situation &rest forms) |
---|
37 | `(progn ,@forms)) |
---|
38 | |
---|
39 | (defun proclaim (decl) |
---|
40 | nil) |
---|
41 | |
---|
42 | (defun compute-restarts (&optional condition) |
---|
43 | nil) |
---|
44 | |
---|
45 | (defun restart-name (restart) |
---|
46 | nil) |
---|
47 | |
---|
48 | (defmacro check-type (place typespec &optional string) |
---|
49 | nil) |
---|
50 | |
---|
51 | (defun warn (&rest args) |
---|
52 | nil) |
---|
53 | |
---|
54 | (defmacro assert (form &rest stuff) |
---|
55 | `(if (not ,form) (error "assertion failed: ~S" ',form))) |
---|
56 | |
---|
57 | (defun compile-file (&rest args) |
---|
58 | (values nil nil nil)) |
---|
59 | |
---|
60 | (defun compile-file-pathname (pathname) |
---|
61 | (concatenate 'string (namestring pathname) ".compiled")) |
---|
62 | |
---|
63 | (defvar *readtable* nil) |
---|
64 | |
---|
65 | (defun copy-readtable (&rest ignored) |
---|
66 | nil) |
---|
67 | |
---|
68 | (defmacro defgeneric (function-name lambda-list &rest options) |
---|
69 | `(prog1 |
---|
70 | (sys::%defun ',function-name ',lambda-list nil))) |
---|