diff options
Diffstat (limited to '')
-rw-r--r-- | lisp/mrl-functions.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/mrl-functions.el b/lisp/mrl-functions.el index 3ba9eff..b9a4d58 100644 --- a/lisp/mrl-functions.el +++ b/lisp/mrl-functions.el @@ -45,5 +45,14 @@ of lines to run through." (insert-char ?\s)) (next-line) (setq lines (- lines 1)))) + +;; that timestamp function +(defun mrl/timestamp () + (interactive) + (let ((m (nth 1 (decode-time) )) + (h (nth 2 (decode-time)))) + (insert (concat (number-to-string h) ":" (number-to-string m) ": ")))) + + (provide 'mrl-functions) ;;; mrl_functions ends here |