]> git.eshelyaron.com Git - emacs.git/commitdiff
* textmodes/remember.el (remember-data-directory)
authorBastien Guerry <bzg@gnu.org>
Thu, 25 Apr 2013 17:39:44 +0000 (19:39 +0200)
committerBastien Guerry <bzg@gnu.org>
Thu, 25 Apr 2013 17:39:44 +0000 (19:39 +0200)
(remember-directory-file-name-format): Fix custom types.

Thanks to Glenn Morris for reporting these problems and for the fixes.

etc/NEWS
lisp/ChangeLog
lisp/textmodes/remember.el

index d8f5f68ff99b78dd86df09deffdab07cb5ef5653..f6335d314eb0b0cd98ef1be346b400a5c3ebccd0 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -101,6 +101,12 @@ You can pick the name of the function and the variables with `C-x 4 a'.
 \f
 * Changes in Specialized Modes and Packages in Emacs 24.4
 
+** `remember' can now store notes in separates files
+You can use the new function `remember-store-in-files' within the
+`remember-handler-functions' option.
+
+See `remember-data-directory' and `remember-directory-file-name-format'
+for new options related to this function.
 ** `ido-decorations' has been slightly extended to give a bit more control.
 
 ** More packages look for ~/.emacs.d/<foo> additionally to ~/.<foo>.
index 62424265d96e30a262477c258c29b0852d8ded33..883e90342178176b86b0e1521022b4f5632f3b7b 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-25  Bastien Guerry  <bzg@gnu.org>
+
+       * textmodes/remember.el (remember-data-directory)
+       (remember-directory-file-name-format): Fix custom types.
+
 2013-04-25  Leo Liu  <sdl.web@gmail.com>
 
        * progmodes/octave.el (octave-completion-at-point-function): Make
index 1286e5d803e426369c3709c644575db75118f2a2..76ffeaf30be878a49b57134621884e56f9c3c8ee 100644 (file)
@@ -432,12 +432,14 @@ If you want to remember a region, supply a universal prefix to
 
 (defcustom remember-data-directory "~/remember"
   "The directory in which to store remember data as files."
-  :type 'file
+  :type 'directory
+  :version "24.4"
   :group 'remember)
 
 (defcustom remember-directory-file-name-format "%Y-%m-%d_%T-%z"
   "Format string for the file name in which to store unprocessed data."
-  :type 'file
+  :type 'string
+  :version "24.4"
   :group 'remember)
 
 (defun remember-store-in-files ()