summaryrefslogtreecommitdiff
path: root/helm-man.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-15 08:18:12 +0100
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2013-11-15 08:18:12 +0100
commitd8f127bfd77a8e2ff270e2def30a3614ffb5bb6a (patch)
tree0b7fcbfba4f155d94453a054524eeceea3caa35f /helm-man.el
parentce9c151f8e929d31358ad9b6e23ea70e4acfc1dc (diff)
* helm-man.el (helm-man-default-action): Fix unused err from condition-case.
Diffstat (limited to 'helm-man.el')
-rw-r--r--helm-man.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/helm-man.el b/helm-man.el
index cf075076..ce688e3d 100644
--- a/helm-man.el
+++ b/helm-man.el
@@ -45,7 +45,7 @@ source.")
"Default action for jumping to a woman or man page from helm."
(let ((wfiles (mapcar
'car (woman-file-name-all-completions candidate))))
- (condition-case err
+ (condition-case nil
(if (> (length wfiles) 1)
(let ((file (helm-comp-read
"ManFile: " wfiles :must-match t)))