From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kenichi Handa Newsgroups: gmane.emacs.devel Subject: M-x display-splash-screen change? Date: Mon, 25 Sep 2006 15:50:54 +0900 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Trace: sea.gmane.org 1159167165 8356 80.91.229.2 (25 Sep 2006 06:52:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 25 Sep 2006 06:52:45 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Sep 25 08:52:43 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GRkKU-0005bD-0O for ged-emacs-devel@m.gmane.org; Mon, 25 Sep 2006 08:52:38 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GRkKT-0006Mz-Mb for ged-emacs-devel@m.gmane.org; Mon, 25 Sep 2006 02:52:37 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GRkK8-0006KA-U2 for emacs-devel@gnu.org; Mon, 25 Sep 2006 02:52:16 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GRkK7-0006IY-46 for emacs-devel@gnu.org; Mon, 25 Sep 2006 02:52:15 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GRkK6-0006IR-Tu for emacs-devel@gnu.org; Mon, 25 Sep 2006 02:52:14 -0400 Original-Received: from [150.29.246.133] (helo=mx1.aist.go.jp) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GRkOS-0008Rb-EU for emacs-devel@gnu.org; Mon, 25 Sep 2006 02:56:44 -0400 Original-Received: from smtp3.aist.go.jp ([150.29.246.12]) by mx1.aist.go.jp with ESMTP id k8P6qBvb001209 for ; Mon, 25 Sep 2006 15:52:11 +0900 (JST) env-from (handa@m17n.org) Original-Received: by smtp3.aist.go.jp with ESMTP id k8P6qAWR003672 for ; Mon, 25 Sep 2006 15:52:10 +0900 (JST) env-from (handa@m17n.org) Original-Received: from handa by etlken with local (Exim 3.36 #1 (Debian)) id 1GRkIo-0006WE-00 for ; Mon, 25 Sep 2006 15:50:54 +0900 Original-To: emacs-devel@gnu.org User-Agent: SEMI/1.14.3 (Ushinoya) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 Emacs/22.0.50 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:60193 Archived-At: I got a report that claims that the splash screen shown by M-x display-splash-screen RET used to disappear on user input, but now it doesn't. Is it an intentional change? Don't we need this change (and the description in docstring about this behavior)? --- Kenichi Handa handa@m17n.org *** startup.el 18 Sep 2006 09:52:49 +0900 1.416 --- startup.el 25 Sep 2006 15:41:00 +0900 *************** *** 1624,1630 **** "Display splash screen according to display. Fancy splash screens are used on graphic displays, normal otherwise." ! (interactive) (if (use-fancy-splash-screens-p) (fancy-splash-screens hide-on-input) (normal-splash-screen hide-on-input))) --- 1624,1630 ---- "Display splash screen according to display. Fancy splash screens are used on graphic displays, normal otherwise." ! (interactive "P") (if (use-fancy-splash-screens-p) (fancy-splash-screens hide-on-input) (normal-splash-screen hide-on-input))) --- Kenichi Handa handa@m17n.org