branch: elpa/helm
commit 3f71b2d3f9cbd24eae6d933288a868b5edf4d111
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
Fix long lines
---
helm-files.el | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/helm-files.el b/helm-files.el
index d4f1e70d7b..724b6dbd87 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -1429,13 +1429,16 @@ DEST must be a directory. SWITCHES when unspecified
default to
(speed (nth 2 infos))
(remain (nth 3 infos))))
(setq percent (and (string-match "\\([0-9]+\\)%" progbar)
- (setq percent (string-to-number (match-string 1
progbar)))))
+ (setq percent (string-to-number
+ (match-string 1 progbar)))))
(helm-aif percent
(format "%s%s%s%s"
(propertize (capitalize (process-name proc))
'face 'helm-ff-rsync-progress-1)
- (propertize " " 'display `(space :width ,(list it)) 'face
'helm-ff-rsync-progress-2)
- (propertize " " 'display `(space :width ,(list (- 100
percent))) 'face 'helm-ff-rsync-progress-3)
+ (propertize " " 'display `(space :width ,(list it))
+ 'face 'helm-ff-rsync-progress-2)
+ (propertize " " 'display `(space :width ,(list (- 100
percent)))
+ 'face 'helm-ff-rsync-progress-3)
(propertize info 'face 'helm-ff-rsync-progress-1))
""))))