Mercurial > emacs
diff lisp/completion.el @ 67273:554ddf754b2b
(save-completions-file-name): Fix typo in last change.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Fri, 02 Dec 2005 21:12:28 +0000 |
| parents | 35b9e081ceed |
| children | 311328d6ca44 7beb78bc1f8e |
line wrap: on
line diff
--- a/lisp/completion.el Fri Dec 02 19:50:16 2005 +0000 +++ b/lisp/completion.el Fri Dec 02 21:12:28 2005 +0000 @@ -302,7 +302,8 @@ (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
