about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--basic.lsp2
-rw-r--r--doc/breaking_rules.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/basic.lsp b/basic.lsp
index a63ab27..09efc5c 100644
--- a/basic.lsp
+++ b/basic.lsp
@@ -67,7 +67,7 @@
 
 (defgeneric ppl (pr expr))
 (defmethod ppl (pr (expr <exp-int>))
-   (convert (num expr) <string>))
+   (convert (int expr) <string>))
 (defmethod ppl (pr (expr <exp-var>))
    (var expr))
 (defmethod ppl (pr (expr <exp-str>))
diff --git a/doc/breaking_rules.md b/doc/breaking_rules.md
index 31a1857..d9c499b 100644
--- a/doc/breaking_rules.md
+++ b/doc/breaking_rules.md
@@ -78,7 +78,7 @@ it could be difficult to satisfy expectations.
 ### Dependencies
 
 Counterintuitively, I chose ISLisp partly *because* it imposes limits in the prototyping phase.
-Standard UNIX libraries like curses, xdr and dbm can still be used from compiled code using the FFI.
+Standard UNIX libraries like curses, catgets, xdr and dbm can still be used from compiled code using the FFI.
 
 ## Coding standards