From mboxrd@z Thu Jan 1 00:00:00 1970 From: mwnn Subject: Re: Unable to quit emacs after enabling Clocking Date: Sun, 24 Oct 2010 17:46:25 +0530 Message-ID: <4CC42399.9050804@gmail.com> References: <4CC30877.1080704@gmail.com> <4CC3A700.6050606@gmail.com> <4CC40053.6000301@gmail.com> <87lj5nopzc.wl%ucecesf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=33367 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P9zrg-0002gH-1S for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 08:39:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P9zeJ-0003M3-7c for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 08:26:08 -0400 Received: from mail-px0-f169.google.com ([209.85.212.169]:33246) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P9zeI-0003Lt-UG for emacs-orgmode@gnu.org; Sun, 24 Oct 2010 08:26:07 -0400 Received: by pxi12 with SMTP id 12so811559pxi.0 for ; Sun, 24 Oct 2010 05:26:06 -0700 (PDT) In-Reply-To: <87lj5nopzc.wl%ucecesf@ucl.ac.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric S Fraga Cc: Eric S Fraga , "emacs-orgmode@gnu.org" , Noorul Islam Changed the line to (setq backup-directory-alist '((".*" . "./.emacs.d/"))) Regards, mwnn On 10/24/2010 03:46 PM, Eric S Fraga wrote: > On Sun, 24 Oct 2010 15:15:55 +0530, mwnn wrote: >> >> I fixed the issue by setting the value of backup-directory-alist as >> shown below: >> >> (setq backup-directory-alist '((".~" . "./.emacs.d/"))) > > I'm not sure I understand this correctly but shouldn't the first entry > be a regex file pattern? This would only appear to match files with > a single character followed by ~? > > According to the documentation for that variable, if you want all > files going to the specified directory (which in your case will be > relative to the original file's location), maybe you want ".*" as the > file regex? > > eric