
Undoes 714b337
because github seems to no longer require chmod +x
for syntax highlighting extensionless files.
12 lines
305 B
Perl
12 lines
305 B
Perl
#!perl
|
|
|
|
sub command { NEXT }
|
|
|
|
$SIG{INT} = sub {
|
|
$::ABORT_HACK = "^C";
|
|
|
|
# DO NOT USE this global variable. It's a nasty hack. In most cases,
|
|
# you should "return ABORT" instead, or maybe "main::abort()" when doing
|
|
# nastier stuff. You should only need $::ABORT_HACK in signal handlers.
|
|
};
|
|
|