From 24e9433f84488845489c0940019ca552d6fb541c Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 7 Jan 2020 07:03:37 +0100 Subject: [PATCH] Disable log timestamps. --- init.d/basics/misc.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/init.d/basics/misc.el b/init.d/basics/misc.el index 9aa05d4..4bfa137 100644 --- a/init.d/basics/misc.el +++ b/init.d/basics/misc.el @@ -1,21 +1,21 @@ ;;; misc.el --- Basic things that do not fit any other category. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-01-03T03:50:12+0100> +;; Time-stamp: <2020-01-04T12:11:41+0100> ;;; Commentary: ;;; Code: -(use-package emacs - :ensure nil +;; (use-package emacs +;; :ensure nil - :config - (defun my/message-with-timestamp (args) - "Prepend current timestamp to a `message' output." - (push (concat (format-time-string "[%FT%T] ") (car args)) (cdr args))) +;; :config +;; (defun my/message-with-timestamp (args) +;; "Prepend current timestamp to a `message' output." +;; (push (concat (format-time-string "[%FT%T] ") (car args)) (cdr args))) - (advice-add 'message :filter-args 'my/message-with-timestamp) - ) +;; (advice-add 'message :filter-args 'my/message-with-timestamp) +;; ) (provide 'basics/misc) ;;; misc.el ends here