From mboxrd@z Thu Jan 1 00:00:00 1970 From: jorge.a.alfaro@gmail.com (Jorge A. Alfaro-Murillo) Subject: Re: org-agenda-files and customize Date: Sun, 29 Jun 2014 21:42:40 -0400 Message-ID: <877g3zp3zj.fsf@gmail.com> References: <86mwcvmvpy.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1Qcb-0005yV-7H for emacs-orgmode@gnu.org; Sun, 29 Jun 2014 21:43:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1QcT-0006gJ-Me for emacs-orgmode@gnu.org; Sun, 29 Jun 2014 21:43:05 -0400 Received: from plane.gmane.org ([80.91.229.3]:35705) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1QcT-0006fB-GL for emacs-orgmode@gnu.org; Sun, 29 Jun 2014 21:42:57 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X1QcS-0004kv-84 for emacs-orgmode@gnu.org; Mon, 30 Jun 2014 03:42:56 +0200 Received: from 66-87-124-130.pools.spcsdns.net ([66.87.124.130]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jun 2014 03:42:56 +0200 Received: from jorge.a.alfaro by 66-87-124-130.pools.spcsdns.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jun 2014 03:42:56 +0200 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 David Masterson writes: > 2. I removed org-agenda-files from the custom-set-variables section of > my .emacs. > 3. I set org-agenda-files in the standard way (C-c [). > 4. I notices that org-agenda-files was back in the custom-set-variables > section of my .emacs. > > Is that supposed to happen? Yes. Where do you expect them to be? If you do not like the custom-set-variables, you have three options (but you cannot use 'C-c ['): #+BEGIN_SRC emacs-lisp (setq org-agenda-files (list "file1" "file2" ...)) #+END_SRC #+BEGIN_SRC emacs-lisp (setq org-agenda-files "path_to_a_directory_that_contains_all_your_files") #+END_SRC #+BEGIN_SRC emacs-lisp (setq org-agenda-files "path_to_a_file_with_the_names_and_location_of_all_your_files") #+END_SRC