diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-12-02 21:12:28 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-12-02 21:12:28 +0000 |
commit | 21b15ee87ea34f05f65e579302103336d74e59e3 (patch) | |
tree | 62d9b4518240f9e6e9a8df85550afa9376941709 /lisp/completion.el | |
parent | 61322d728601751719095018369ab53e68da31cd (diff) | |
download | emacs-21b15ee87ea34f05f65e579302103336d74e59e3.tar.gz emacs-21b15ee87ea34f05f65e579302103336d74e59e3.tar.bz2 emacs-21b15ee87ea34f05f65e579302103336d74e59e3.zip |
(save-completions-file-name): Fix typo in last change.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r-- | lisp/completion.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/completion.el b/lisp/completion.el index 2cd30e6513f..28bf1dd10b9 100644 --- a/lisp/completion.el +++ b/lisp/completion.el @@ -302,7 +302,8 @@ See also `save-completions-retention-time'." (cond ((file-readable-p olddef) olddef) ((file-directory-p (convert-standard-filename "~/.emacs.d/")) - (convert-standard-filename (expand-file-name completions "~/.emacs.d/"))) + (convert-standard-filename + (expand-file-name "completions" "~/.emacs.d/"))) (t olddef))) "The filename to save completions to." :type 'file |