From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-indent-mode corrupted most of a big org file Date: Tue, 03 Dec 2013 13:30:06 -0500 Message-ID: <87a9gh4wk1.fsf@alphaville.bos.redhat.com> References: <8738mb2rhq.fsf@gmail.com> <87y542147z.fsf@gmail.com> <529E1399.7040204@gmail.com> <87eh5t4ypo.fsf@alphaville.bos.redhat.com> <87li01254o.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vnujt-0007ny-04 for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 13:30:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vnujj-00087N-AZ for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 13:30:28 -0500 Received: from plane.gmane.org ([80.91.229.3]:42581) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vnujj-00087C-4b for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 13:30:19 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vnujh-0002Kk-SS for emacs-orgmode@gnu.org; Tue, 03 Dec 2013 19:30:17 +0100 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 03 Dec 2013 19:30:17 +0100 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 03 Dec 2013 19:30:17 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Alexander Baier writes: > I used to set up backup-directory-alist the same way you have, but > changed it, when I noticed emacs putting backups of files I edited as > root into that directory. That was something I did not want to do. > OK - I haven't lived with this setup long enough to know better. On another subject: > (setq backup-directory-alist > '(("/home/delexi/*" . "/home/delexi/.emacs.d/backup"))) the docstring says that the car of each dotted pair in the alist is a regexp: I presume an emacs regexp, not a shell glob pattern. So the setting should be (setq backup-directory-alist '(("/home/delexi/.*" . "/some/dir"))) - no? Nick