Merge commit 'cc026178a9' as 'third_party/lisp/trivial-backtrace'

This commit is contained in:
Vincent Ambo 2020-01-17 17:53:27 +00:00
commit fdcfd59aa4
19 changed files with 809 additions and 0 deletions

View file

@ -0,0 +1,10 @@
(in-package #:trivial-backtrace)
(eval-when (:compile-toplevel :load-toplevel :execute)
(unless (fboundp 'map-backtrace)
(defun map-backtrace (func)
(declare (ignore func))))
(unless (fboundp 'print-backtrace-to-stream)
(defun print-backtrace-to-stream (stream)
(format stream "~&backtrace output unavailable.~%"))))