summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-05-26 15:43:01 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-05-26 15:43:01 -0500
commitd0699d742ba1c12cb318294525e90c9c51ea5c81 (patch)
tree63ceda6dca811020e02baa9ced91b24646c9f76a /bin
parent7e2c0bc47f5b90f301cc6bba46cd79edfc1c05ca (diff)
downloadlanguage-teco-d0699d742ba1c12cb318294525e90c9c51ea5c81.tar.gz
language-teco-d0699d742ba1c12cb318294525e90c9c51ea5c81.zip
error message shouldn't include file/line number
Diffstat (limited to 'bin')
-rw-r--r--bin/te2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/te b/bin/te
index d50aed4..e4293fa 100644
--- a/bin/te
+++ b/bin/te
@@ -32,7 +32,7 @@ COMMAND: while (1) {
if ($pc eq "\e") {
print "\n";
ReadMode 3;
- local $SIG{INT} = sub { die "Execution interrupted" };
+ local $SIG{INT} = sub { die "Execution interrupted\n" };
my $result = eval { $te->execute($command) };
print "? $@\n" if $@;
print $result if defined $result;