From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Luc Teirlinck Newsgroups: gmane.emacs.devel Subject: inhibit-splash-screen and initial-scratch-message docstrings. Date: Sat, 21 Jan 2006 16:50:32 -0600 (CST) Message-ID: <200601212250.k0LMoW400078@raven.dms.auburn.edu> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1137884045 7370 80.91.229.2 (21 Jan 2006 22:54:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 21 Jan 2006 22:54:05 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jan 21 23:54:02 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 1F0RcP-0007rY-FC for ged-emacs-devel@m.gmane.org; Sat, 21 Jan 2006 23:54:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F0Rex-0006zy-Vw for ged-emacs-devel@m.gmane.org; Sat, 21 Jan 2006 17:56:39 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F0Reg-0006ys-Fy for emacs-devel@gnu.org; Sat, 21 Jan 2006 17:56:22 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F0Ree-0006xU-Sc for emacs-devel@gnu.org; Sat, 21 Jan 2006 17:56:22 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F0Ree-0006xF-KO for emacs-devel@gnu.org; Sat, 21 Jan 2006 17:56:20 -0500 Original-Received: from [131.204.53.104] (helo=manatee.dms.auburn.edu) by monty-python.gnu.org with esmtp (Exim 4.34) id 1F0Rj7-0003yE-2Y for emacs-devel@gnu.org; Sat, 21 Jan 2006 18:00:57 -0500 Original-Received: from raven.dms.auburn.edu (raven.dms.auburn.edu [131.204.53.29]) by manatee.dms.auburn.edu (8.13.3+Sun/8.13.3) with ESMTP id k0LMre1H020853 for ; Sat, 21 Jan 2006 16:53:40 -0600 (CST) Original-Received: (from teirllm@localhost) by raven.dms.auburn.edu (8.11.7p1+Sun/8.11.7) id k0LMoW400078; Sat, 21 Jan 2006 16:50:32 -0600 (CST) X-Authentication-Warning: raven.dms.auburn.edu: teirllm set sender to teirllm@dms.auburn.edu using -f Original-To: emacs-devel@gnu.org X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.1 (manatee.dms.auburn.edu [131.204.53.104]); Sat, 21 Jan 2006 16:53:40 -0600 (CST) 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:49366 Archived-At: I propose the following doc changes to prevent possible confusion. I can install if desired. ===File ~/startup-diff====================================== *** startup.el 21 Jan 2006 09:10:12 -0600 1.396 --- startup.el 21 Jan 2006 16:45:09 -0600 *************** *** 41,47 **** :group 'internal) (defcustom inhibit-splash-screen nil ! "*Non-nil inhibits the startup screen. This is for use in your personal init file, once you are familiar with the contents of the startup screen." :type 'boolean --- 41,49 ---- :group 'internal) (defcustom inhibit-splash-screen nil ! "Non-nil inhibits the startup screen. ! It also inhibits display of the initial message in the *scratch* buffer. ! This is for use in your personal init file, once you are familiar with the contents of the startup screen." :type 'boolean *************** *** 1087,1093 **** ") "Initial message displayed in *scratch* buffer at startup. ! If this is nil, no message will be displayed." :type '(choice (text :tag "Message") (const :tag "none" nil)) :group 'initialization) --- 1089,1097 ---- ") "Initial message displayed in *scratch* buffer at startup. ! If this is nil, no message will be displayed. ! If `inhibit-splash-screen' is non-nil, then no message is displayed, ! regardless of the value of this variable." :type '(choice (text :tag "Message") (const :tag "none" nil)) :group 'initialization) ============================================================