all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
To: help-gnu-emacs@gnu.org
Subject: Re: Time of last command invoked
Date: Tue, 02 Mar 2021 04:07:53 +0100	[thread overview]
Message-ID: <87im6agsmu.fsf@zoho.eu> (raw)
In-Reply-To: YDnlBAhh3gvRIMx7@protected.rcdrun.com

Jean Louis wrote:

> Is "logger" some function that exists in Emacs, or should
> I simply make it?

Do it :)

Now we're talking some real overhead!

> (defun rcd/emacs-lisp-log (log)
>   "Allows functions to log their usage"
>   (let* ((function (second (backtrace-frame 5 nil)))
> 	 (timestamp (format-time-string "%Y-%m-%d-%H:%M:%S"))
> 	 (log (format "%s %s %s\n" timestamp function log))
> 	 (save-silently t))    
>     (with-temp-buffer
> 	(insert log)
>       (append-to-file (point-min) (point-max) *emacs-lisp-log*))))

OMG! Severe errors found:

  First sentence should end with punctuation

  Argument ‘log’ should appear (as LOG) in the doc string

  Probably "Allows" should be imperative "Allow"

This is your friend:

(require 'checkdoc)

(setq checkdoc-permit-comma-termination-flag t)

(defun check-package-style ()
  (interactive)
  (let ((msg "Style check..."))
    (message msg)
    (checkdoc-current-buffer t) ; TAKE-NOTES
    (message "%sdone" msg) ))
(defalias 'check-style #'check-package-style)

-- 
underground experts united
http://user.it.uu.se/~embe8573
https://dataswamp.org/~incal




  reply	other threads:[~2021-03-02  3:07 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-26 14:20 Time of last command invoked Jean Louis
2021-02-26 21:56 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-02-27  6:21   ` Jean Louis
2021-03-02  3:07     ` Emanuel Berg via Users list for the GNU Emacs text editor [this message]
2021-03-07  9:26       ` Jean Louis
2021-03-07  9:47         ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-02-27 15:31   ` Stefan Monnier
2021-02-28  6:17     ` Robert Thorpe
2021-02-28  7:22       ` Jean Louis
2021-02-28 15:25         ` Stefan Monnier
2021-03-01  6:45           ` Jean Louis
2021-03-02  3:02     ` Emanuel Berg via Users list for the GNU Emacs text editor

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87im6agsmu.fsf@zoho.eu \
    --to=help-gnu-emacs@gnu.org \
    --cc=moasenwood@zoho.eu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.