0.8.6.14:
[sbcl.git] / src / compiler / generic / core.lisp
index 3d29e19..4fa0787 100644 (file)
@@ -31,7 +31,7 @@
   (debug-info () :type list))
 
 ;;; Note the existence of FUNCTION.
-(defun note-function (info function object)
+(defun note-fun (info function object)
   (declare (type function function)
           (type core-object object))
   (let ((patch-table (core-object-patch-table object)))
                    (:foreign
                     (aver (stringp name))
                     (or (foreign-symbol-address-as-integer name)
-                        (error "unknown foreign symbol: ~S")))
+                        (error "unknown foreign symbol: ~S" name)))
                    #!+x86
                    (:code-object
                     (aver (null name))
                     (values (get-lisp-obj-address code) t)))))
       (sb!vm:fixup-code-object code offset value kind))))
 
-;;; Stick a reference to the function Fun in Code-Object at index I. If the
-;;; function hasn't been compiled yet, make a note in the Patch-Table.
-(defun reference-core-function (code-obj i fun object)
+;;; Stick a reference to the function FUN in CODE-OBJECT at index I. If the
+;;; function hasn't been compiled yet, make a note in the patch table.
+(defun reference-core-fun (code-obj i fun object)
   (declare (type core-object object) (type functional fun)
           (type index i))
   (let* ((info (leaf-info fun))