Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the App-Addex CPAN distribution.

Report information
The Basics
Id: 87207
Status: resolved
Priority: 0/
Queue: App-Addex

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than or, so the expressions after or are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: App-Addex-0.023-returnor.patch
diff -bu App-Addex-0.023-JpL92T/lib/App/Addex/Output/Mutt.pm~ App-Addex-0.023-JpL92T/lib/App/Addex/Output/Mutt.pm --- App-Addex-0.023-JpL92T/lib/App/Addex/Output/Mutt.pm~ 2012-02-27 12:29:37.000000000 -0600 +++ App-Addex-0.023-JpL92T/lib/App/Addex/Output/Mutt.pm 2013-07-23 10:14:49.121000598 -0500 @@ -76,7 +76,7 @@ } sub _ig { - return $_[0] =~ /;$/ and $_[0] =~ /:/; + return ($_[0] =~ /;$/ and $_[0] =~ /:/); } sub process_entry {
Whoops! Thanks very much. Fix applied as e8764c8. -- rjbs