diff options
| author | Chong Yidong | 2009-06-28 16:09:46 +0000 |
|---|---|---|
| committer | Chong Yidong | 2009-06-28 16:09:46 +0000 |
| commit | f7c0d93167355a7601de56f9fc21c1fd2f2b0f22 (patch) | |
| tree | ec74f0730b16f7478d68bacb944b865eb0182e43 | |
| parent | 098a1589d913ceb640c96551b05f60e50b4c4dca (diff) | |
| download | emacs-f7c0d93167355a7601de56f9fc21c1fd2f2b0f22.tar.gz emacs-f7c0d93167355a7601de56f9fc21c1fd2f2b0f22.zip | |
* files.el (trash-directory): Fix defcustom type.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/files.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 14f9557e78d..be9ac8a6e97 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-06-28 David De La Harpe Golden <david@harpegolden.net> | ||
| 2 | |||
| 3 | * files.el (trash-directory): Fix defcustom type. | ||
| 4 | |||
| 1 | 2009-03-28 Juri Linkov <juri@jurta.org> | 5 | 2009-03-28 Juri Linkov <juri@jurta.org> |
| 2 | 6 | ||
| 3 | * help-fns.el (describe-function-1): Correctly locate adviced | 7 | * help-fns.el (describe-function-1): Correctly locate adviced |
diff --git a/lisp/files.el b/lisp/files.el index 344b31db961..e2fe19c29c0 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -6016,7 +6016,7 @@ This directory is only used when the function `system-move-file-to-trash' | |||
| 6016 | is not defined. | 6016 | is not defined. |
| 6017 | Relative paths are interpreted relative to `default-directory'. | 6017 | Relative paths are interpreted relative to `default-directory'. |
| 6018 | If the value is nil, Emacs uses a freedesktop.org-style trashcan." | 6018 | If the value is nil, Emacs uses a freedesktop.org-style trashcan." |
| 6019 | :type 'directory | 6019 | :type '(choice (const nil) directory) |
| 6020 | :group 'auto-save | 6020 | :group 'auto-save |
| 6021 | :version "23.2") | 6021 | :version "23.2") |
| 6022 | 6022 | ||