From 53ee9b05c855546b474b7255062b6aa8edbc325b Mon Sep 17 00:00:00 2001 From: Thierry Volpiatto Date: Mon, 20 Mar 2017 20:42:21 +0100 Subject: [PATCH] Remove space in helm-man-format-switches and fix docstring. --- helm-man.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/helm-man.el b/helm-man.el index 90f39dbc3..04d56cf8d 100644 --- a/helm-man.el +++ b/helm-man.el @@ -44,13 +44,10 @@ (const :tag "Woman" woman))) (defcustom helm-man-format-switches (cl-case system-type - ((darwin macos) " %s") + ((darwin macos) "%s") (t "-l %s")) "Arguments to pass to the `manual-entry' function. -Arguments are passed to `manual-entry' with `format.' -Default use \"-l\" which may not be supported on old man versions, -in this case use \"%s\" as value to pass only the filename as argument. -See Issue #1035" +Arguments are passed to `manual-entry' with `format.'" :group 'helm-man :type 'string)