From: Stefan Monnier Date: Fri, 2 Dec 2005 21:12:28 +0000 (+0000) Subject: (save-completions-file-name): Fix typo in last change. X-Git-Tag: emacs-pretest-22.0.90~5540 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=21b15ee87ea34f05f65e579302103336d74e59e3;p=emacs.git (save-completions-file-name): Fix typo in last change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6be44fab995..0b029e203df 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-12-02 Stefan Monnier + + * completion.el (save-completions-file-name): Fix typo in last change. + 2005-12-02 Jan Dj,Ad(Brv * info.el: Move back/forward history to the beginning of the tool bar. @@ -12,11 +16,9 @@ lack the definition. (allout-mode): Move this variable above any uses, or byte compilation will fail. - (allout-resolve-xref): Remove use of personal file-reference - function. + (allout-resolve-xref): Remove use of personal file-reference function. (allout-toggle-current-subtree-encryption): Do the current (ie, - visible containing) topic, rather than nearest around point. Doc - fix. + visible containing) topic, rather than nearest around point. Doc fix. (allout-toggle-subtree-encryption): New function, workhorse that works on nearest topic containing point. (allout-encrypt-string): Signal requirement for newer version of pgg. @@ -28,21 +30,20 @@ 2005-12-02 Agustin Martin - * textmodes/flyspell.el (flyspell-external-point-words): Consider - a misspelling as found in the string search if: (a) misspelling + * textmodes/flyspell.el (flyspell-external-point-words): + Consider a misspelling as found in the string search if: (a) misspelling and found string lengths match, or (b) misspelling is found as element in a boundary-chars separated longer string, or (c) ispell-program-name is really ispell and misspelling is found as part of a TeX string. After successful match move beginning of search region to end of match. Warn about not found misspellings once the process is done. - (flyspell-large-region) Do not set ispell-parser to tex if in TeX - mode. + (flyspell-large-region): Do not set ispell-parser to tex if in TeX mode. 2005-12-02 Nick Roberts * progmodes/gud.el (gud-menu-map): Put gud-finish back on the - tool bar (removed inadvertantly), + tool bar (removed inadvertently). 2005-12-02 Juri Linkov @@ -56,8 +57,7 @@ 2005-12-01 Luc Teirlinck * simple.el (transient-mark-mode, line-number-mode) - (column-number-mode, size-indication-mode): Remove - `:require nil'. + (column-number-mode, size-indication-mode): Remove `:require nil'. 2005-12-01 Nick Roberts 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