all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Richard <theonewiththeevillook@yahoo.fr>
To: Miguel Guedes <miguel.a.guedes@gmail.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Detect content in minibuffer
Date: Thu, 30 Jan 2014 15:36:08 +0100	[thread overview]
Message-ID: <877g9hilk7.fsf@yahoo.fr> (raw)
In-Reply-To: <52ea5c80$0$29463$862e30e2@ngroups.net> (Miguel Guedes's message of "Thu, 30 Jan 2014 14:06:56 +0000")

Miguel Guedes <miguel.a.guedes@gmail.com> writes:

> I'm using the following to query the size of the buffer associated
> with the minibuffer but it always returns 0 even when there is a
> message currently being displayed in the echo area (say, documentation
> by eldoc or anything else).  The aim is to not echo anything when
> there's currently content in the echo area.

I guess there are two problems :
1. minibuffer is not the same as echo area. Try
M-: M-: (with-current-buffer (window-buffer (minibuffer-window)) (buffer-string))
(i.e. enter a recursive minibuffer) and then you get something.

2. the command loop erases the echo area before running commands, so
whenever you try running your code interactively, it'll report an empty
echo area. Try this instead:

(progn
  (message "foo!")
  (with-current-buffer " *Echo Area 0*"
    (format "Found string: %s" (buffer-string))))

Also, the functions current-message and with-temp-message might be of
interest to you. (But note that current-message also suffers the
problems of being cleared if you call it interactively !)

HTH,

-- 
Nico.



  reply	other threads:[~2014-01-30 14:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-30 14:06 Detect content in minibuffer Miguel Guedes
2014-01-30 14:36 ` Nicolas Richard [this message]
2014-01-30 15:13 ` Stefan Monnier

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=877g9hilk7.fsf@yahoo.fr \
    --to=theonewiththeevillook@yahoo.fr \
    --cc=help-gnu-emacs@gnu.org \
    --cc=miguel.a.guedes@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.