all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <tsdh@gnu.org>
To: Thorsten Jolitz <tjolitz@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: How to avoid y-or-n-p in a program?
Date: Wed, 12 Mar 2014 17:14:28 +0100	[thread overview]
Message-ID: <87zjkvz95n.fsf@gnu.org> (raw)
In-Reply-To: <87y50fqvh2.fsf@gmail.com> (Thorsten Jolitz's message of "Wed, 12 Mar 2014 16:37:13 +0100")

Thorsten Jolitz <tjolitz@gmail.com> writes:

Hi Thorsten,

> when in a program function A calls another (external) function B that
> asks the user a y-or-n-p question, and you want to avoid that and
> instead code in function A that the answer is always Y, so that the
> prompt never shows up - how do you do that?

In very recent emacs versions, you can use `cl-letf' for that purpose:

--8<---------------cut here---------------start------------->8---
(defun b ()
  (if (y-or-n-p "do it?")
      :done
    :not-done))

(defun a ()
  (cl-letf (((symbol-function #'y-or-n-p)
	     (lambda (&rest ignore) t)))
    (b)))

(a) ;; C-x C-e => :done (and no query)
--8<---------------cut here---------------end--------------->8---

Bye,
Tassilo



  reply	other threads:[~2014-03-12 16:14 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-12 15:37 How to avoid y-or-n-p in a program? Thorsten Jolitz
2014-03-12 16:14 ` Tassilo Horn [this message]
2014-03-12 16:50   ` Juanma Barranquero
2014-03-12 18:14 ` Stefan Monnier
2014-03-12 22:31   ` Thorsten Jolitz
2014-03-14 14:26   ` Thorsten Jolitz
2014-03-14 14:35     ` Stefan
2014-03-14 14:48       ` Thorsten Jolitz
2014-03-14 16:09         ` Stefan
2014-03-14 17:21           ` Thorsten Jolitz

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=87zjkvz95n.fsf@gnu.org \
    --to=tsdh@gnu.org \
    --cc=help-gnu-emacs@gnu.org \
    --cc=tjolitz@gmail.com \
    /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.