Skip to content
Snippets Groups Projects
Commit f69bed33 authored by camm's avatar camm
Browse files

BUGS

parent c21dee42
No related branches found
No related tags found
No related merge requests found
......@@ -26,10 +26,12 @@
(handler-bind
((style-warning #'(lambda (c)
(declare (ignore c))
; (break "foo")
(setf actual-style-warnings-p t)
nil))
((or error warning)
#'(lambda (c)
; (break "bar")
(unless (typep c 'style-warning)
(setf actual-warnings-p t))
nil)))
......@@ -40,8 +42,9 @@
(destructuring-bind
(output-truename warnings-p failure-p)
vals
(print (namestring (truename target-pathname)))
(print (namestring output-truename))
; (print (namestring (truename target-pathname)))
; (print (namestring output-truename))
; (format t "str ~a~%" str)
(values
(let ((v1 (or print verbose
(and (not print-p) *compile-print*)
......
......@@ -627,8 +627,8 @@
(defmethod (setf documentation-test-class-1-doc-accessor) ((newdoc string) (obj documentation-test-class-1))
(setf (slot-value obj 'my-doc) newdoc))
(defmethod documentation ((obj documentation-test-class-1) (doctype (eql t)))
(documentation-test-class-1-doc-accessor obj))
; (defmethod documentation ((obj documentation-test-class-1) (doctype (eql t)))
; (documentation-test-class-1-doc-accessor obj))
(defmethod (setf documentation) ((newdoc string) (obj documentation-test-class-1) (doctype (eql t)))
(setf (documentation-test-class-1-doc-accessor obj) newdoc)))
......
......@@ -9,7 +9,7 @@
(load "return.lsp")
(load "return-from.lsp")
(load "defsetf.lsp")
(load "define-setf-expander.lsp")
;(load "define-setf-expander.lsp")
(load "and.lsp")
(load "apply.lsp")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment