Skip to content

Commit

Permalink
Fixed a few merge typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriano committed Aug 10, 2012
1 parent 1b88d0d commit b7c6ad8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions gsc/_t-univ.scm
Original file line number Diff line number Diff line change
Expand Up @@ -853,6 +853,9 @@

((void-object? obj)
(gen "undefined"))

((undefined? obj)
(univ-undefined ctx))

((proc-obj? obj)
(lbl->id ctx 1 (proc-obj-name obj)))
Expand Down Expand Up @@ -969,6 +972,7 @@ function Gambit_buildrest ( f ) { // nb formal args
var nb_static_args = f - 1;
var nb_rest_args = Gambit_nargs - nb_static_args;
var rest = null;
var Gambit_reg = [];
Gambit_reg[1] = " R1 ";
Gambit_reg[2] = " R2 ";
Gambit_reg[3] = " R3 ";
Expand Down Expand Up @@ -1497,9 +1501,9 @@ function Gambit_bb1_print ( ) { // print
return Gambit_wrong_nargs(Gambit_bb1_print);
}
write(Gambit_toString(Gambit_reg[1]));
write(Gambit_toString(" R1 "));
return Gambit_reg[0];
return " R0 ";
}
Gambit_glo[\"print\"] = Gambit_bb1_print;
Expand All @@ -1511,7 +1515,7 @@ function Gambit_bb1_newline ( ) { // newline
print();
return Gambit_reg[0];
return " R0 ";
}
Gambit_glo[\"newline\"] = Gambit_bb1_newline;
Expand All @@ -1521,9 +1525,9 @@ function Gambit_bb1_display ( ) { // display
return Gambit_wrong_nargs(Gambit_bb1_display);
}
write(Gambit_toString(Gambit_reg[1]));
write(Gambit_toString(" R1 "));
return Gambit_reg[0];
return " R0 ";
}
Gambit_glo[\"display\"] = Gambit_bb1_display;
Expand All @@ -1533,9 +1537,9 @@ function Gambit_bb1_real_2d_time_2d_milliseconds ( ) { // real-time-milliseconds
return Gambit_wrong_nargs(Gambit_bb1_display);
}
Gambit_reg[1] = new Date();
" R1 " = new Date();
return Gambit_reg[0];
return " R0 ";
}
Gambit_glo[\"real-time-milliseconds\"] = Gambit_bb1_real_2d_time_2d_milliseconds;
Expand Down Expand Up @@ -1949,7 +1953,7 @@ def Gambit_bb1_println(): # println
print(str(int(Gambit_reg[1])) + '.')
else:
print(Gambit_reg[1])
return Gambit_reg[0]
return " R0 ";

Gambit_glo["println"] = Gambit_bb1_println

Expand Down
2 changes: 1 addition & 1 deletion include/stamp.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
*/

#define ___STAMP_YMD 20120810
#define ___STAMP_HMS 190220
#define ___STAMP_HMS 191321

0 comments on commit b7c6ad8

Please sign in to comment.