* textmodes/remember.el (remember-data-directory)

(remember-directory-file-name-format): Fix custom types.

Thanks to Glenn Morris for reporting these problems and for the fixes.
This commit is contained in:
Bastien Guerry 2013-04-25 19:39:44 +02:00
parent 584ea27747
commit c034abda39
3 changed files with 15 additions and 2 deletions

View file

@ -101,6 +101,12 @@ You can pick the name of the function and the variables with `C-x 4 a'.
* 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>.

View 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

View 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 ()