all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Emacs-Devel <emacs-devel@gnu.org>
Subject: Re: wrapper fn for message and minibuffer-message?
Date: Wed, 05 Oct 2005 11:53:57 -0400	[thread overview]
Message-ID: <jwvr7b02cdq.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <MEEKKIABFKKDFJMPIOEBKEPECMAA.drew.adams@oracle.com> (Drew Adams's message of "Tue, 4 Oct 2005 14:58:52 -0700")

> (defun msg-maybe-in-minibuffer (string &rest args)
>   "Display STRING with `message' or `minibuffer-message', as appropriate."
>   (if (active-minibuffer-window)
>       (minibuffer-message (format "  [%s]" string))
>     (message string)))

I agree 100% with the intention.  Typical such messages are the completion
messages, for completion functions that can be used both in the minibuffer
and in normal buffers.  E.g. the pcomplete functions.

Of course I'd define it more like

(defun msg-maybe-in-minibuffer (format &rest args)
  "Display STRING with `message' or `minibuffer-message', as appropriate."
  (if (minibufferp)
      (minibuffer-message (apply 'format (concat "  [" format "]") args))
    (apply 'message format args)))

I'd even argue that this function should be called "minibuffer-message",
since currently minibuffer-message is only used when (minibufferp) is
non-nil.


        Stefan

  reply	other threads:[~2005-10-05 15:53 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-10-04 21:58 wrapper fn for message and minibuffer-message? Drew Adams
2005-10-05 15:53 ` Stefan Monnier [this message]
2005-10-05 16:23   ` Drew Adams
2005-10-06  5:28   ` Richard M. Stallman
2005-10-06 15:52     ` Drew Adams
2005-10-07  3:04       ` Richard M. Stallman
2005-10-07 22:29         ` Drew Adams
2005-10-09 18:16           ` Richard M. Stallman
2005-10-09 21:25             ` Drew Adams
2005-10-10 18:06               ` Richard M. Stallman
2005-10-10 19:52               ` Drew Adams
2005-10-15 13:08                 ` Juri Linkov
2005-10-15 14:39                   ` Drew Adams
2005-10-15 14:57                     ` Juri Linkov
2005-10-16 14:40                   ` Richard M. Stallman
2005-10-17  8:04                     ` Searching in the minibuffer (was: wrapper fn for message and minibuffer-message?) Juri Linkov
2005-10-17 21:57                       ` Richard M. Stallman
2005-10-18  8:05                         ` Searching in the minibuffer Juri Linkov
2005-10-19  2:43                           ` Richard M. Stallman
2005-10-19 15:55                             ` Juri Linkov
2005-10-20  4:54                               ` Richard M. Stallman
2005-10-21 15:38                                 ` Juri Linkov
2005-10-21 22:19                                   ` Richard M. Stallman
2005-10-21 22:30                                     ` Drew Adams

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=jwvr7b02cdq.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=emacs-devel@gnu.org \
    /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.