David Masterson <dsmaster...@gmail.com> 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


Reply via email to