From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Martin Jost" Newsgroups: gmane.emacs.help Subject: Re: Emacs on Aix questions Date: Tue, 2 Mar 2004 14:41:18 +0100 Organization: Siemens Business Services Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1078250689 16134 80.91.224.253 (2 Mar 2004 18:04:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 2 Mar 2004 18:04:49 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Mar 02 19:04:41 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AyEG1-0006oO-00 for ; Tue, 02 Mar 2004 19:04:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1AyEBT-000805-OA for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Mar 2004 12:59:59 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!lnewsoutpeer00.lnd.ops.eu.uu.net!lnewsinpeer01.lnd.ops.eu.uu.net!emea.uu.net!newsfeed1.sbs.de!news.mch.sbs.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 34 Original-NNTP-Posting-Host: mhhbuhuc.ww200.siemens.net Original-X-Trace: news.mch.sbs.de 1078234879 28628 139.21.8.114 (2 Mar 2004 13:41:19 GMT) Original-X-Complaints-To: abuse@siemens.de Original-NNTP-Posting-Date: Tue, 2 Mar 2004 13:41:19 +0000 (UTC) X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Original-Xref: shelby.stanford.edu gnu.emacs.help:121428 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:17384 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:17384 "Hemond, Steve" schrieb im Newsbeitrag = news:mailman.2129.1076349584.928.help-gnu-emacs@gnu.org... 1. Is is possible to tell emacs not to use backup and temporary files? I hate listing a directory filled with #file and file~ files, and I don't really need to backup this way. Can I get rid of that feature easily? >>From the emacs-info file (node "Backup Files") For most files, the variable `make-backup-files' determines whether to make backup files. On most operating systems, its default value is `t', so that Emacs does write backup files. so a=20 (setq make-backup-files nil) in your .emacs should (mostly) "fix" the ~-part. (mostly because of the "For most files,..." in the info-text. >>From the emacs-info file (node "Controlling Auto-Saving") Each time you visit a file, auto-saving is turned on for that file's buffer if the variable `auto-save-default' is non-`nil' (but not in batch mode; *note Entering Emacs::). The default for this variable is `t', so auto-saving is the usual practice for file-visiting buffers. so a=20 (setq auto-save-default nil) in your .emacs should "fix" the #-part. HTH Martin Sorry for the late reply, my newsreader didn't want to post at first = try...