diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-31T13·46+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-31T13·46+0100 |
commit | 8d02e5a5ef2d4c578a56ff10a0e99bf4ffe40d48 (patch) | |
tree | ecf7672b3aa3ae00dac0ae30b03feab638a3f901 /emacs | |
parent | 2844c1ffbdbaea2a5cc4dcc7e05d43e919969193 (diff) |
Lint timestring.el
Sidenote: I have *no* idea when or why I wrote this... sleep-writing Elisp
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/timestring.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/emacs/.emacs.d/wpc/timestring.el b/emacs/.emacs.d/wpc/timestring.el index 08a221579f6e..a6a6653539b3 100644 --- a/emacs/.emacs.d/wpc/timestring.el +++ b/emacs/.emacs.d/wpc/timestring.el @@ -2,7 +2,7 @@ ;; Author: William Carroll <wpcarro@gmail.com> ;; Version: 0.0.1 -;; Package-Requires: ((ts "0.2") (emacs "25.1")) +;; Package-Requires: ((emacs "25.1")) ;; Homepage: https://user.git.corp.google.com/wpcarro/briefcase ;;; Commentary: @@ -57,8 +57,10 @@ (alist-get (completing-read label xs) xs nil nil #'equal)) (defun timestring-copy-encoded-time () - "Select a common time and then select an encoding. The selected time will be -encoded using the selected encoding and copied onto your clipboard." + "Select a common time and an encoding. + +The selected time will be encoded using the selected encoding and copied onto +your clipboard." (interactive) (let ((time (funcall (timestring--completing-read "Time: " timestring-supported-times))) |