diff options
author | Aaron Crane <perl@aaroncrane.co.uk> | 2009-01-14 09:51:44 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-14 10:40:26 +0000 |
commit | f340d83a2dfc7d46ec2faecd54348728374a83bb (patch) | |
tree | e6c45af1a54f3d742b0755c04c4496e57fbc265e /Porting/Maintainers.pm | |
parent | 0b4436e8e06f0f88c3a1e061bf4e043a07bfcae3 (diff) | |
download | perl-f340d83a2dfc7d46ec2faecd54348728374a83bb.tar.gz |
applying patches and upstream
Nicholas Clark writes:
> $ perl Porting/Maintainers --opened
> (No files are modified)
I think that message would be even more helpful if it went to stderr;
(trivial) patch attached.
--
Aaron Crane ** http://aaroncrane.co.uk/
From afa6ac1c2f6bde792be6ac065a87119e1dbdafee Mon Sep 17 00:00:00 2001
From: Aaron Crane <perl@aaroncrane.co.uk>
Date: Wed, 14 Jan 2009 09:46:33 +0000
Subject: [PATCH] Send informative output to stderr, not stdout
Diffstat (limited to 'Porting/Maintainers.pm')
-rw-r--r-- | Porting/Maintainers.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/Maintainers.pm b/Porting/Maintainers.pm index a6aaaa00c8..0b03e0579e 100644 --- a/Porting/Maintainers.pm +++ b/Porting/Maintainers.pm @@ -253,7 +253,7 @@ sub show_results { } } elsif ($Opened) { - print "(No files are modified)\n"; + print STDERR "(No files are modified)\n"; } else { usage(); |