summaryrefslogtreecommitdiffstats
path: root/txr.c
diff options
context:
space:
mode:
Diffstat (limited to 'txr.c')
-rw-r--r--txr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/txr.c b/txr.c
index 5ff5e2e0..bcf85f9d 100644
--- a/txr.c
+++ b/txr.c
@@ -131,7 +131,6 @@ static val remove_hash_bang_line(val spec)
return spec;
{
- val shbang = string(L"#!");
val firstline = first(spec);
val firstelem = first(firstline);
val item;
@@ -145,7 +144,7 @@ static val remove_hash_bang_line(val spec)
if (stringp(item)) {
val twochars = sub_str(item, zero, two);
- if (equal(twochars, shbang))
+ if (equal(twochars, lit("#!")))
return rest(spec);
}