[622] in BarnOwl Developers
[D-O-H] r724 - / trunk/owl
daemon@ATHENA.MIT.EDU (nelhage@MIT.EDU)
Thu Oct 29 18:08:02 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: nelhage@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Wed, 30 May 2007 22:30:10 -0400 (EDT)
Author: nelhage
Date: 2007-05-30 22:30:09 -0400 (Wed, 30 May 2007)
New Revision: 724
Modified:
/
trunk/owl/perlwrap.pm
Log:
r22008@phanatique: nelhage | 2007-05-30 22:29:41 -0400
We don't need to squash warnings here, we should just use "" as a
default, since the undef's will get stringified anyways.
Property changes on:
___________________________________________________________________
Name: svk:merge
- 6122c8b4-0e12-0410-9533-8bcd7c66c992:/local/dirty-owl-hacks:24493
6aa88b72-b502-0410-8cb4-a5dd0230fb79:/owl-local:1356
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/barnowl:22006
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h:18636
+ 6122c8b4-0e12-0410-9533-8bcd7c66c992:/local/dirty-owl-hacks:24493
6aa88b72-b502-0410-8cb4-a5dd0230fb79:/owl-local:1356
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/barnowl:22008
bb873fd7-8e23-0410-944a-99ec44c633eb:/local/d-o-h:18636
Modified: trunk/owl/perlwrap.pm
===================================================================
--- trunk/owl/perlwrap.pm 2007-05-30 05:17:51 UTC (rev 723)
+++ trunk/owl/perlwrap.pm 2007-05-31 02:30:09 UTC (rev 724)
@@ -69,13 +69,12 @@
my $func = shift;
my $args = shift || {};
my %args = (
- summary => undef,
- usage => undef,
- description => undef,
+ summary => "",
+ usage => "",
+ description => "",
%{$args}
);
- no warnings 'uninitialized';
BarnOwl::new_command_internal($name, $func, $args{summary}, $args{usage}, $args{description});
}