X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=imap.lisp;fp=imap.lisp;h=b873bca2772c0b5266a2ec28fa9867eb792e0e29;hb=9a613ba731125584906aeb4886869428e2c3ba32;hp=634fb5dfce6808557f8f4e8c660a7d0cb9d50971;hpb=fb1046ab5b71244b8ba7ce47267e3ef3dcacc406;p=postoffice.git diff --git a/imap.lisp b/imap.lisp index 634fb5d..b873bca 100644 --- a/imap.lisp +++ b/imap.lisp @@ -227,6 +227,7 @@ ;; a condition either has a server-string or it has a ;; format-control string (format stream "Post Office condition: ~s~%" identifier) + #+allegro (if* (and (slot-boundp con 'excl::format-control) (excl::simple-condition-format-control con)) then (apply #'format stream @@ -1664,7 +1665,9 @@ (defun kwd-intern (string) ;; convert the string to the current preferred case ;; and then intern - (intern (case excl::*current-case-mode* + (intern (case + #-allegro acl-compat.excl::*current-case-mode* + #+allegro excl::*current-case-mode* ((:case-sensitive-lower :case-insensitive-lower) (string-downcase string)) (t (string-upcase string)))