##// END OF EJS Templates
Bugfixes
naryl -
r51:cdf03d3e default
parent child Browse files
Show More
@@ -62,7 +62,7 b''
62 62 (defpsmacro trim (s)
63 63 `(chain ,s (trim)))
64 64
65 (defpsmacro replace (s from to)
65 (defpsmacro qspreplace (s from to)
66 66 `(chain ,s (replace ,from ,to)))
67 67
68 68 (defpsmacro val (s)
@@ -4,7 +4,6 b''
4 4 (defvar *app-name* "")
5 5
6 6 (defun entry-point-no-args ()
7 (format t "~A~%" uiop:*command-line-arguments*)
8 7 (entry-point uiop:*command-line-arguments*))
9 8
10 9 (defun entry-point (args)
@@ -462,7 +462,7 b''
462 462 (ucase t 1 1)
463 463 (lcase t 1 1)
464 464 (trim t 1 1)
465 (replace t 2 3)
465 (qspreplace t 2 3 "replace")
466 466 (instr t 2 3)
467 467 (isnum t 1 1)
468 468 (val t 1 1)
@@ -66,7 +66,7 b''
66 66 (if (equal form '(void))
67 67 nil
68 68 (funcall *old-return-result-of* tag form)))
69 (export 'void)
69 (cl:export 'void)
70 70
71 71 ;;; Bitwise stuff
72 72 ;; No idea why these are not exported
General Comments 0
You need to be logged in to leave comments. Login now