summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2013-10-28 08:55:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2013-10-28 08:55:19 -0700
commit1f9f41ef07063675b0dbf643b0bf10b9ac144880 (patch)
tree20616dbd7ea84e45e449f3a11e22d896818d08a7
parent86ca707c11b05a6cd17a26223e1a6c936b0b83c0 (diff)
downloadtxr-1f9f41ef07063675b0dbf643b0bf10b9ac144880.tar.gz
txr-1f9f41ef07063675b0dbf643b0bf10b9ac144880.tar.bz2
txr-1f9f41ef07063675b0dbf643b0bf10b9ac144880.zip
Remove junk character from error message.
-rw-r--r--match.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/match.c b/match.c
index 070303cf..d51feffe 100644
--- a/match.c
+++ b/match.c
@@ -2222,7 +2222,7 @@ static val v_accept_fail(match_files_ctx *c)
sem_error(specline, lit("~a: no block named ~a in scope"),
sym, target, nao);
else
- sem_error(specline, lit("%~a: no anonymous block in scope"),
+ sem_error(specline, lit("~a: no anonymous block in scope"),
sym, nao);
return nil;
}