Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update bootstrap to v18
  • Loading branch information
sorear committed May 29, 2012
1 parent 65474a2 commit 3133f7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FETCH_URL
@@ -1 +1 @@
https://github.com/downloads/sorear/niecza/niecza-v17.zip
http://host02.appflux.net/niecza/niecza-18.zip
2 changes: 1 addition & 1 deletion docs/announce.v18
Expand Up @@ -62,5 +62,5 @@ this mailing. Also check out the TODO file; whether you want to work
on stuff on it, or have cool ideas to add to it, both are good.


[1] https://github.com/downloads/sorear/niecza/niecza-18.zip
[1] http://host02.appflux.net/niecza/niecza-18.zip
[2] https://github.com/sorear/niecza
2 changes: 1 addition & 1 deletion src/CompilerBlob.cs
Expand Up @@ -123,7 +123,7 @@ public class Downcaller {
}

internal static Variable DCResult(object r) {
if (r == null) return Kernel.AnyMO.typeVar;
if (r == null) return Kernel.AnyP;
else if (r is string) return Kernel.BoxAnyMO((string)r, Kernel.StrMO);
else if (r is int) return Builtins.MakeInt((int)r);
else if (r is bool) return ((bool)r) ? Kernel.TrueV : Kernel.FalseV;
Expand Down
2 changes: 1 addition & 1 deletion src/NieczaFrontendSTD.pm6
Expand Up @@ -187,7 +187,7 @@ method FAILGOAL ($stop, $name, $startpos) {
method deb(*@str) { note @str }

method cursor_fresh($k = self) { Q:CgOp {
(ns (cursor_fresh (cast cursor (@ {self})) (@ {$k})))
(cursor_fresh (cast cursor (@ {self})) (@ {$k}))
} }
method cursor_force($pos) {
$*HIGHWATER = $pos;
Expand Down

0 comments on commit 3133f7f

Please sign in to comment.