all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Narendra Joshi <narendraj9@gmail.com>
To: Michael Heerdegen <michael_heerdegen@web.de>
Cc: help-gnu-emacs <help-gnu-emacs@gnu.org>
Subject: Re: Using variable names in a macro
Date: Sun, 10 Dec 2017 20:12:18 +0530	[thread overview]
Message-ID: <87k1xuod9x.fsf@gmail.com> (raw)
In-Reply-To: <874loyx1ne.fsf@web.de> (Michael Heerdegen's message of "Sun, 10 Dec 2017 12:28:37 +0100")

Michael Heerdegen <michael_heerdegen@web.de> writes:

> Narendra Joshi <narendraj9@gmail.com> writes:
>
>> ```
>> (defmacro do-when-idle (f g interval)
>>   "Call F when idle for INTERVAL seconds and then G when there is activity."
>>   `(progn
>>      (defun ,(intern (concat "do-when-idle-"
>>                              (sha1 (format "%s-%s" f g)))) ()
>>        (funcall ,g)
>>        (remove-hook 'post-command-hook
>>                     #',(intern (concat "do-when-idle-"
>>                                        (sha1 (format "%s-%s" f g)))))
>>        (run-with-idle-timer ,interval
>>                             nil
>>                             (lambda ()
>>                               (funcall ,f)
>>                               (add-hook 'post-command-hook
>>                                         #',(intern (concat "do-when-idle-"
>>                                                            (sha1 (format "%s-%s" f g))))))))
>>      (run-with-idle-timer ,interval
>>                           nil
>>                           (lambda ()
>>                             (funcall ,f)
>>                             (add-hook 'post-command-hook
>>                                       #',(intern (concat "do-when-idle-"
>>                                                          (sha1 (format "%s-%s" f g)))))))))
>> ```
>
> Hmm, with some trivial simplifications of the list building, this could
> look like:
>
> #+begin_src emacs-lisp
> (defmacro do-when-idle (f g interval)
>   "Call F when idle for INTERVAL seconds and then G when there is activity."
>   (let* ((name (intern (concat "do-when-idle-"
>                                (sha1 (format "%s-%s" f g)))))
>          (run-idle-timer-form `(run-with-idle-timer
>                                 ,interval
>                                 nil
>                                 (lambda ()
>                                   (funcall ,f)
>                                   (add-hook 'post-command-hook #',name)))))
>     `(progn
>        (defun ,name ()
>          (funcall ,g)
>          (remove-hook 'post-command-hook #',name)
>          ,run-idle-timer-form)
>        ,run-idle-timer-form)))
> #+end_src
This is a lot cleaner. Thanks! :)

> It would be better, though, to replace the run-idle-timer-form from with
> a lambda, to avoid the code duplication.
>
> Actually, `do-when-idle' doesn't even have to be a macro.  You can make
> it a defun when you define the NAME with defalias.  Bind it to a closure
> so that you can refer to all of the stuff with variables bound around
> it.
Can you share an example please? :)

-- 
Narendra Joshi



  reply	other threads:[~2017-12-10 14:42 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-09 15:49 Using variable names in a macro Narendra Joshi
2017-12-10 11:28 ` Michael Heerdegen
2017-12-10 14:42   ` Narendra Joshi [this message]
2017-12-10 17:32     ` Michael Heerdegen
2017-12-11 14:07       ` Narendra Joshi

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=87k1xuod9x.fsf@gmail.com \
    --to=narendraj9@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    --cc=michael_heerdegen@web.de \
    /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.