Skip to content

Commit

Permalink
(format-sldb-condition, condition-references): Add workarounds for
Browse files Browse the repository at this point in the history
buggy no-applicable-method.
  • Loading branch information
Helmut Eller committed Jun 12, 2004
1 parent 5231e45 commit 58bc7fb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions swank-allegro.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,18 @@
(defimplementation accept-connection (socket)
(socket:accept-connection socket :wait t))

;; The following defitinions are workarounds for the buggy
;; no-applicable-method function in Allegro 5. We have to provide an
;; implementation.
(defimplementation emacs-connected ())

(defimplementation format-sldb-condition (c)
(princ-to-string c))

(defimplementation condition-references (c)
(declare (ignore))
'())

;;;; Unix signals

(defimplementation call-without-interrupts (fn)
Expand Down

0 comments on commit 58bc7fb

Please sign in to comment.