Skip to content

Commit

Permalink
s/const_string/CONST_STRING/
Browse files Browse the repository at this point in the history
  • Loading branch information
bschmalhofer committed Mar 22, 2009
1 parent 2347641 commit 8aad04a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pmc/eclectuscharacter.pmc
Expand Up @@ -28,7 +28,7 @@ pmclass EclectusCharacter

STRING* get_string() {
return string_append(INTERP,
const_string(INTERP, "#\\"),
CONST_STRING(INTERP, "#\\"),
string_chr(INTERP, PMC_int_val(SELF)));
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/eclectusemptylist.pmc
Expand Up @@ -27,7 +27,7 @@ pmclass EclectusEmptyList
maps Integer {

STRING* get_string() {
return const_string(INTERP, "()");
return CONST_STRING(INTERP, "()");
}

/* the empty list is not #f, therefore evaluates to true */
Expand Down
2 changes: 1 addition & 1 deletion src/pmc/eclectuspair.pmc
Expand Up @@ -275,7 +275,7 @@ Used to unarchive the Pair.
}

STRING* get_string() {
return const_string(INTERP, "()");
return CONST_STRING(INTERP, "()");
}

/* a pair is not #f, therefore evaluates to true */
Expand Down

0 comments on commit 8aad04a

Please sign in to comment.