浏览代码

changed warn-user function to have no CCL dependencies

Mark VandenBrink 12 年之前
父节点
当前提交
023aeb0eca
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. 2 4
      utils.lisp

+ 2 - 4
utils.lisp

@@ -73,11 +73,9 @@ The macro expansion has relatively low overhead in space or time."
 
   (when *break-on-warn-user*
     (break "Breaking in WARN-USER"))
-
-  (format *error-output* "~&********************************************************************************~%")
-#+ccl (format *error-output* "~&WARNING in ~a:: " (ccl::%last-fn-on-stack 1))
+  (format *error-output* "~&~%WARNING:: ")
   (apply #'format *error-output* format-string args)
-  (format *error-output* "~&**********************************************************************************~%"))
+  (format *error-output* "~&~%"))
 
 (defparameter *max-raw-bytes-print-len* 10 "Max number of octets to print from an array")