The #\Form is not a standard character name, use #.(code-char 12) instead.
authorMarco Baringer <mb@bese.it>
Sun, 5 Feb 2006 16:04:44 +0000 (16:04 +0000)
committerMarco Baringer <mb@bese.it>
Sun, 5 Feb 2006 16:04:44 +0000 (16:04 +0000)
src/js.lisp

index da440dc..ba4378a 100644 (file)
@@ -402,7 +402,7 @@ this macro."
   '((#\' . #\')
     (#\\ . #\\)
     (#\b . #\Backspace)
-    (#\f . #\Form)
+    (#\f . #.(code-char 12))
     (#\n . #\Newline)
     (#\r . #\Return)
     (#\t . #\Tab)))