From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Intelligent stacking of messages in the echo area Date: Wed, 29 Jan 2020 18:53:18 -0500 Message-ID: References: <87sgldfi9j.fsf@mail.linkov.net> <878sn3g0o7.fsf@gmail.com> <87pngepti3.fsf@mail.linkov.net> <878slrcibk.fsf@mail.linkov.net> <87pnf1navp.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="56137"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: emacs-devel@gnu.org, Eric S Fraga To: Juri Linkov Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Jan 30 00:54:50 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1iwxAX-000EYL-Qo for ged-emacs-devel@m.gmane-mx.org; Thu, 30 Jan 2020 00:54:49 +0100 Original-Received: from localhost ([::1]:53240 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iwxAW-0002su-U7 for ged-emacs-devel@m.gmane-mx.org; Wed, 29 Jan 2020 18:54:48 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43762) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iwx9B-00016I-Ga for emacs-devel@gnu.org; Wed, 29 Jan 2020 18:53:26 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iwx9A-0006BM-5s for emacs-devel@gnu.org; Wed, 29 Jan 2020 18:53:25 -0500 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:42868) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iwx99-0006A0-VJ for emacs-devel@gnu.org; Wed, 29 Jan 2020 18:53:24 -0500 Original-Received: from pmg2.iro.umontreal.ca (localhost.localdomain [127.0.0.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id DBC3781257; Wed, 29 Jan 2020 18:53:21 -0500 (EST) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg2.iro.umontreal.ca (Proxmox) with ESMTP id 3FCDA80D86; Wed, 29 Jan 2020 18:53:20 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1580342000; bh=758hc81eo70eE1ZFJrQqz/LIFAAf6t1gSJDaUQActmI=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=Ec7018HzENu0TB0uXsXih4dfTCb1gjt/PMewSEnkUA/OBLWVObb46sAKRzAM2GAYh 6z1+wU20S36hMEI5ZkKbaVvHwdjd5QxycCGoGuBj5b/STZNM7y+lALfoLJ/Kbo3OYj NT7lcOPL9PlvjRDO7QfE6qCiAxtjLDFT0azpsdNAn84ZBN9zus22+/7BcJJvU+oZd/ 6fbso8ujqqdYnHHwWxjZRrdWR9axnmh7b0JpYl3iRMd5qePEX+fABof3wt6ejzpfic bGm1SL5RBDc/JHtSCX8jXDeuz7BfntvsL+ISiKenBD9bMXoQicqrh0gf0CDC0vhxq3 S5gr8q7l24bFg== Original-Received: from pastel (unknown [45.72.213.248]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id D535F120C66; Wed, 29 Jan 2020 18:53:19 -0500 (EST) In-Reply-To: <87pnf1navp.fsf@mail.linkov.net> (Juri Linkov's message of "Thu, 30 Jan 2020 00:41:46 +0200") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:244759 Archived-At: > Turning this into defcustom is a challenge. I tried to introduce > a fictitious 'set-minibuffer-multi-message', but I see no way to use > 'add-function' on a symbol in :set of defcustom. It seems something > like (local 'SYMBOL) but for global scope is missing, e.g. like > an non-existent '(global sym)' demonstrated below, but I'm not sure. `(default-value sym)` should do the trick. Stefan