From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Kevin Rodgers Newsgroups: gmane.emacs.help Subject: Re: how to turn on showing end of file? Date: Tue, 15 Sep 2009 23:15:51 -0600 Message-ID: References: <505F1739-26B8-40A8-AF6F-AA9DF1E54BA8@Web.DE> <87ljkhjjal.fsf@jidanni.org> <87ws403aof.fsf@mundaneum.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1253080393 7161 80.91.229.12 (16 Sep 2009 05:53:13 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 16 Sep 2009 05:53:13 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Sep 16 07:53:06 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MnnRw-0008Eq-K2 for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Sep 2009 07:53:04 +0200 Original-Received: from localhost ([127.0.0.1]:44145 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnnRv-0001eA-Vq for geh-help-gnu-emacs@m.gmane.org; Wed, 16 Sep 2009 01:53:04 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MnnRJ-0001dW-Tb for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 01:52:25 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MnnRB-0001ZH-IC for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 01:52:21 -0400 Original-Received: from [199.232.76.173] (port=39487 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MnnRB-0001ZE-8m for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 01:52:17 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]:15466) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MnmsR-0006uf-RE for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 01:16:23 -0400 Original-Received: from lo.gmane.org ([80.91.229.12]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MnmsQ-0003lR-04 for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 01:16:22 -0400 Original-Received: from list by lo.gmane.org with local (Exim 4.50) id 1MnmsL-0000yi-C6 for help-gnu-emacs@gnu.org; Wed, 16 Sep 2009 07:16:17 +0200 Original-Received: from c-71-237-24-138.hsd1.co.comcast.net ([71.237.24.138]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 16 Sep 2009 07:16:17 +0200 Original-Received: from kevin.d.rodgers by c-71-237-24-138.hsd1.co.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 16 Sep 2009 07:16:17 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 47 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: c-71-237-24-138.hsd1.co.comcast.net User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) In-Reply-To: <87ws403aof.fsf@mundaneum.com> X-detected-operating-system: by mx20.gnu.org: GNU/Linux 2.6 (newer, 3) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:68196 Archived-At: Sébastien Vauban wrote: > Hi Eli, > > Eli Zaretskii wrote: >>> From: jidanni@jidanni.org >>> >>> Warning: `default-indicate-empty-lines' is an obsolete variable >>> (as of Emacs 23.2); use `indicate-empty-lines' instead. >> From etc/NEWS, of course: >> >> ** All the default-FOO variables that hold the default value of the FOO >> variable, are now declared obsolete. > > Really ALL those variables beginning with `default-', such as: > > --8<---------------cut here---------------start------------->8--- > (setq default-case-fold-search t) > (setq default-directory "XXX") > (setq default-frame-alist '((tool-bar-lines . 1))) > (setq default-enable-multibyte-characters t) > (setq default-input-method "latin-1-prefix") > (setq default-major-mode 'org-mode) > --8<---------------cut here---------------end--------------->8--- No, only those variables that hold the default value of the FOO variable. E.g. there is no `directory' variable. Try: C-h d \`Default value of > Is, then, the following correct starting from Emacs 23.2? > > --8<---------------cut here---------------start------------->8--- > (setq-default case-fold-search t) > (setq-default directory "XXX") > (setq-default frame-alist '((tool-bar-lines . 1))) > (setq-default enable-multibyte-characters t) > (setq-default input-method "latin-1-prefix") > (setq-default major-mode 'org-mode) > --8<---------------cut here---------------end--------------->8--- No. > Thanks for giving this precision... -- Kevin Rodgers Denver, Colorado, USA