aboutsummaryrefslogtreecommitdiff
path: root/urxvt
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-06-19 11:30:59 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-06-19 11:30:59 +1200
commit20633daa19c949f3848e5bc049adec8cd516120b (patch)
tree831398960a3c89b6f2348c2bc7eb0b7ce7a9a633 /urxvt
parentAdd some perlish niceties (diff)
downloaddotfiles-20633daa19c949f3848e5bc049adec8cd516120b.tar.gz
dotfiles-20633daa19c949f3848e5bc049adec8cd516120b.zip
Explicit returns
Diffstat (limited to 'urxvt')
-rw-r--r--urxvt/ext/selection4
1 files changed, 2 insertions, 2 deletions
diff --git a/urxvt/ext/selection b/urxvt/ext/selection
index 1fdcc575..43b72e89 100644
--- a/urxvt/ext/selection
+++ b/urxvt/ext/selection
@@ -24,7 +24,7 @@ sub on_init {
$self->{enabled} = 1;
- ()
+ return ();
}
sub on_sel_extend {
@@ -70,5 +70,5 @@ sub on_sel_extend {
return 1;
}
- ()
+ return ();
}