GNU bug report logs -
#19495
25.0.50; `message` -- optional argument to suppress echo area display
Previous Next
Reported by: Keith David Bershatsky <esq <at> lawlist.com>
Date: Sat, 3 Jan 2015 17:51:02 UTC
Severity: wishlist
Tags: wontfix
Found in version 25.0.50
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #15 received at 19495 <at> debbugs.gnu.org (full text, mbox):
>> As a feature request, the Emacs team may wish to consider adding an
>> optional argument to the `message` function to permit suppression of
>> the message being displayed in the echo area.
>>
>> In my particular use case, there are certain process output strings
>> that I prefer having printed to the `*Messages*` buffer -- instead of
>> a dedicated process output buffer.
>
> [...]
>
>> The following is my workaround:
>>
>> (defun rsync-process-filter (proc string)
>> (let ((inhibit-read-only t))
>> (when (not (or
>> (string-match "files...\r" string)
>> (string-match "files to consider\n" string)))
>> (with-current-buffer (get-buffer-create "*Messages*")
>> (goto-char (point-max))
>> (insert string)))))
>
> (I'm going through old bug reports that unfortunately have not received
> any responses yet.)
>
> I kinda don't think extending `message' in this way would be ideal.
> Currently, `message' is pretty simple to understand, and to change it to
> not actually message anything (in some circumstances) would be
> confusing. Doing this in the way you've done in the workaround seems
> like a better idea.
Emacs 25 introduced a new variable 'inhibit-message' to suppress echo area display.
> So I'm closing this as a "wontfix".
This feature request was dated Jan 2015, and a new feature implemented
independently was added on Apr 2015.
This bug report was last modified 5 years and 355 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.