branch: elpa/javelin
commit b897380708b02e112e997269fbeba9b7352f332d
Author: Otávio Schwanck dos Santos <[email protected]>
Commit: Otávio Schwanck dos Santos <[email protected]>
fix message errors
---
harpoon.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/harpoon.el b/harpoon.el
index 39fc7cf2ba2..03a2a9123d6 100644
--- a/harpoon.el
+++ b/harpoon.el
@@ -249,7 +249,7 @@
(harpoon--remove-number result))))))
(defun harpoon--remove-number (file)
- "Remove number of the file."
+ "Remove number of the file. FILE = Filename to remove the number."
(nth 1 (split-string file " - ")))
(defun harpoon--fix-quick-menu-items ()
@@ -259,7 +259,7 @@
(completing-read "Harpoon to file: " (harpoon--add-numbers-to-quick-menu
(delete "" (split-string (harpoon--get-file-text) "\n"))))))
(defun harpoon--add-numbers-to-quick-menu (files)
- "Add numbers to files."
+ "Add numbers to files. FILES = Files to add the numbers."
(let ((line-number 0))
(mapcar (lambda (line) (setq line-number (+ 1 line-number)) (concat
(format "%s" line-number) " - " line)) files)))