summaryrefslogtreecommitdiff
path: root/lisp/completion.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-12-02 21:12:28 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-12-02 21:12:28 +0000
commitf4494b62571609d47b0b6ca4385ea6e7dd6a8313 (patch)
treecc3f5d9b7c89566e5961eb241bb32490d0701f96 /lisp/completion.el
parentb46229ba3436fb33e4371f652ac1ab319dd9803c (diff)
downloademacs-f4494b62571609d47b0b6ca4385ea6e7dd6a8313.tar.gz
(save-completions-file-name): Fix typo in last change.
Diffstat (limited to 'lisp/completion.el')
-rw-r--r--lisp/completion.el3
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