[Ecls-list] Patch: typos in compiler messages

Josh Elsasser josh at elsasser.org
Sat Aug 30 21:03:55 UTC 2008


I found a couple of minor typos in compiler messages, fixes follow.

--- src/cmp/cmpcall.lsp
+++ src/cmp/cmpcall.lsp
@@ -253,10 +253,10 @@
 	  (if (and (symbolp fname)
 		   (not (eql (symbol-package fname) (find-package "CL"))))
 	      (progn
-		(cmpnote "Emiting FUNCALL for ~S" fname)
+		(cmpnote "Emitting FUNCALL for ~S" fname)
 		(add-symbol fname))
 	      (progn
-		(cmpnote "Emiting FDEFINITION for ~S" fname)
+		(cmpnote "Emitting FDEFINITION for ~S" fname)
 		(setq loc (list 'FDEFINITION fname))))))
   (do ((i 0 (1+ i))
        (l args (cdr l)))
--- src/cmp/cmptype.lsp
+++ src/cmp/cmptype.lsp
@@ -173,10 +173,10 @@
 		 (t
 		  `(OR ,t1 ,t2))))
 	  ((null tag1)
-	   (cmpwarn "Unkonwn type ~S" t1)
+	   (cmpwarn "Unknown type ~S" t1)
 	   'T)
 	  (t
-	   (cmpwarn "Unkonwn type ~S" t2)
+	   (cmpwarn "Unknown type ~S" t2)
 	   'T))))
 
 (defun type>= (type1 type2)




More information about the ecl-devel mailing list