Skip to content

Commit

Permalink
Add printing of #!void to universal backend
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Feb 25, 2014
1 parent a3dd342 commit 496aa78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion gsc/_t-univ.scm
Expand Up @@ -2801,6 +2801,9 @@ EOF
(^if (^eq? (^local-var "obj") (^if (^eq? (^local-var "obj")
(^obj '())) (^obj '()))
(^return (^str "")) (^return (^str ""))
(^if (^eq? (^local-var "obj")
(^void))
(^return (^str "#!void"))
(^if (^pair? (^local-var "obj")) (^if (^pair? (^local-var "obj"))
(^return (^concat (^return (^concat
(^call-prim (^call-prim
Expand All @@ -2818,7 +2821,7 @@ EOF
(^return (^tostr (^local-var "obj"))))))))) (^return (^tostr (^local-var "obj")))))))))
;;) ;;)
;;) ;;)
) ))


((println) ((println)
(^prim-function-declaration (^prim-function-declaration
Expand Down
4 changes: 2 additions & 2 deletions include/stamp.h
Expand Up @@ -2,5 +2,5 @@
* Time stamp of last source code repository commit. * Time stamp of last source code repository commit.
*/ */


#define ___STAMP_YMD 20140224 #define ___STAMP_YMD 20140225
#define ___STAMP_HMS 35435 #define ___STAMP_HMS 41035

0 comments on commit 496aa78

Please sign in to comment.