[ create a new paste ] login | about

Link: http://codepad.org/N27LHcmv    [ raw code | fork ]

Plain Text, pasted on Mar 3:
1
2
3
4
5
6
7
8
;;; If a fasl was stale, try to recompile and load (once).
(defmethod asdf:perform :around ((o asdf:load-op)
								 (c asdf:cl-source-file))
  (handler-case (call-next-method o c)
	;; If a fasl was stale, try to recompile and load (once).
	(sb-ext:invalid-fasl ()
						 (asdf:perform (make-instance 'asdf:compile-op) c)
						 (call-next-method))))


Create a new paste based on this one


Comments: