Changeset 4338
- Timestamp:
- 10/12/03 19:49:28 (19 years ago)
- Location:
- trunk/j/src/org/armedbear/lisp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/j/src/org/armedbear/lisp/autoloads.lisp
r4266 r4338 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: autoloads.lisp,v 1.4 6 2003-10-09 16:42:19piso Exp $4 ;;; $Id: autoloads.lisp,v 1.47 2003-10-12 19:49:28 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 103 103 (autoload-macro 'check-type) 104 104 (autoload-macro 'deftype) 105 (autoload-macro ' defclass)105 (autoload-macro '(defclass defgeneric defmethod) "defclass.lisp") 106 106 (autoload-macro 'with-standard-io-syntax) 107 107 (autoload-macro 'psetf) -
trunk/j/src/org/armedbear/lisp/fixme.lisp
r4108 r4338 2 2 ;;; 3 3 ;;; Copyright (C) 2003 Peter Graves 4 ;;; $Id: fixme.lisp,v 1. 7 2003-09-28 18:35:17piso Exp $4 ;;; $Id: fixme.lisp,v 1.8 2003-10-12 19:48:48 piso Exp $ 5 5 ;;; 6 6 ;;; This program is free software; you can redistribute it and/or … … 60 60 (defun copy-readtable (&rest ignored) 61 61 nil) 62 63 (defmacro defgeneric (function-name lambda-list &rest options)64 `(prog165 (sys::%defun ',function-name ',lambda-list nil)))66 67 (defmacro defmethod (&rest args)68 nil)
Note: See TracChangeset
for help on using the changeset viewer.