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

revert inadvertent commits

parent f69bed33
No related branches found
No related tags found
No related merge requests found
...@@ -26,12 +26,10 @@ ...@@ -26,12 +26,10 @@
(handler-bind (handler-bind
((style-warning #'(lambda (c) ((style-warning #'(lambda (c)
(declare (ignore c)) (declare (ignore c))
; (break "foo")
(setf actual-style-warnings-p t) (setf actual-style-warnings-p t)
nil)) nil))
((or error warning) ((or error warning)
#'(lambda (c) #'(lambda (c)
; (break "bar")
(unless (typep c 'style-warning) (unless (typep c 'style-warning)
(setf actual-warnings-p t)) (setf actual-warnings-p t))
nil))) nil)))
...@@ -42,9 +40,8 @@ ...@@ -42,9 +40,8 @@
(destructuring-bind (destructuring-bind
(output-truename warnings-p failure-p) (output-truename warnings-p failure-p)
vals vals
; (print (namestring (truename target-pathname))) (print (namestring (truename target-pathname)))
; (print (namestring output-truename)) (print (namestring output-truename))
; (format t "str ~a~%" str)
(values (values
(let ((v1 (or print verbose (let ((v1 (or print verbose
(and (not print-p) *compile-print*) (and (not print-p) *compile-print*)
......
...@@ -627,8 +627,8 @@ ...@@ -627,8 +627,8 @@
(defmethod (setf documentation-test-class-1-doc-accessor) ((newdoc string) (obj documentation-test-class-1)) (defmethod (setf documentation-test-class-1-doc-accessor) ((newdoc string) (obj documentation-test-class-1))
(setf (slot-value obj 'my-doc) newdoc)) (setf (slot-value obj 'my-doc) newdoc))
; (defmethod documentation ((obj documentation-test-class-1) (doctype (eql t))) (defmethod documentation ((obj documentation-test-class-1) (doctype (eql t)))
; (documentation-test-class-1-doc-accessor obj)) (documentation-test-class-1-doc-accessor obj))
(defmethod (setf documentation) ((newdoc string) (obj documentation-test-class-1) (doctype (eql t))) (defmethod (setf documentation) ((newdoc string) (obj documentation-test-class-1) (doctype (eql t)))
(setf (documentation-test-class-1-doc-accessor obj) newdoc))) (setf (documentation-test-class-1-doc-accessor obj) newdoc)))
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
(load "return.lsp") (load "return.lsp")
(load "return-from.lsp") (load "return-from.lsp")
(load "defsetf.lsp") (load "defsetf.lsp")
;(load "define-setf-expander.lsp") (load "define-setf-expander.lsp")
(load "and.lsp") (load "and.lsp")
(load "apply.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