summaryrefslogtreecommitdiff
path: root/helm-for-files.el
diff options
context:
space:
mode:
Diffstat (limited to 'helm-for-files.el')
-rw-r--r--helm-for-files.el12
1 files changed, 3 insertions, 9 deletions
diff --git a/helm-for-files.el b/helm-for-files.el
index fd090f95..a0c0f61e 100644
--- a/helm-for-files.el
+++ b/helm-for-files.el
@@ -1,6 +1,6 @@
;;; helm-for-files.el --- helm-for-files and related. -*- lexical-binding: t -*-
-;; Copyright (C) 2012 ~ 2019 Thierry Volpiatto <thierry.volpiatto@gmail.com>
+;; Copyright (C) 2012 ~ 2020 Thierry Volpiatto <thierry.volpiatto@gmail.com>
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
@@ -128,7 +128,7 @@ Be aware that a nil value will make tramp display very slow."
(migemo :initform t)
(persistent-action :initform 'helm-ff-kill-or-find-buffer-fname)))
-(defmethod helm--setup-source :after ((source helm-recentf-source))
+(cl-defmethod helm--setup-source :after ((source helm-recentf-source))
(setf (slot-value source 'action)
(append (symbol-value (helm-actions-from-type-file))
'(("Delete file(s) from recentf" .
@@ -174,7 +174,7 @@ Colorize only symlinks, directories and files."
;; Call file-attributes only if:
;; - file is not remote
;; - helm-for-files--tramp-not-fancy is nil and file is remote AND
- ;; connected. (Issue #1679)
+ ;; connected. (Bug#1679)
for type = (and (or (null isremote)
(and (null helm-for-files-tramp-not-fancy)
(file-remote-p i nil t)))
@@ -300,10 +300,4 @@ searching for is already found."
(provide 'helm-for-files)
-;; Local Variables:
-;; byte-compile-warnings: (not obsolete)
-;; coding: utf-8
-;; indent-tabs-mode: nil
-;; End:
-
;;; helm-for-files.el ends here