From 5694dde771f3cbab2a732fac1efb2ffe1be4a513 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Sun, 27 Apr 2014 11:51:25 -0700 Subject: Move s-chomp to run function --- contrib/emacs/password-store.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'contrib/emacs') diff --git a/contrib/emacs/password-store.el b/contrib/emacs/password-store.el index 142928d..ced7767 100644 --- a/contrib/emacs/password-store.el +++ b/contrib/emacs/password-store.el @@ -57,7 +57,7 @@ outputs error message on failure." (list password-store-executable nil (current-buffer) nil) (-reject 'null args))))) (if (zerop exit-code) - (buffer-string) + (s-chomp (buffer-string)) (error (s-chomp (buffer-string))))))) (defun password-store--run-init (gpg-ids &optional folder) @@ -199,13 +199,13 @@ Default PASSWORD-LENGTH is `password-store-password-length'." "Insert a new ENTRY containing PASSWORD." (interactive (list (read-string "Password entry: ") (read-passwd "Password: " t))) - (message (s-chomp (shell-command-to-string (format "echo %s | %s insert -m -f %s" password password-store-executable entry))))) + (message (shell-command-to-string (format "echo %s | %s insert -m -f %s" password password-store-executable entry)))) ;;;###autoload (defun password-store-remove (entry) "Remove existing password for ENTRY." (interactive (list (completing-read "Password entry: " (password-store-list)))) - (message (s-chomp (password-store--run-remove entry t)))) + (message (password-store--run-remove entry t))) ;;;###autoload (defun password-store-url (entry) @@ -224,6 +224,6 @@ avoid sending a password to the browser." (defun password-store-version () "Show version of pass executable." (interactive) - (message (s-chomp (password-store--run-version)))) + (message (password-store--run-version))) ;;; password-store.el ends here -- cgit v1.2.3-59-g8ed1b