diff options
| author | Glenn Morris | 2008-09-11 06:12:06 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-09-11 06:12:06 +0000 |
| commit | 7103fd599b4eb1610e35721ee4ebe95cc32499b8 (patch) | |
| tree | 89a11400eea9fbded12e2ac4f9a21964dddb55b5 | |
| parent | bd0f7af8bceabaa1f30969bf15c59649c16b828f (diff) | |
| download | emacs-7103fd599b4eb1610e35721ee4ebe95cc32499b8.tar.gz emacs-7103fd599b4eb1610e35721ee4ebe95cc32499b8.zip | |
(ido-mode): Initialize with custom-initialize-default. (Bug#947).
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/ido.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 896c74aee95..6bc3b329967 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * ido.el (ido-mode): Initialize with custom-initialize-default. | ||
| 4 | (Bug#947). | ||
| 5 | |||
| 1 | 2008-09-10 Chong Yidong <cyd@stupidchicken.com> | 6 | 2008-09-10 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 7 | ||
| 3 | * replace.el (perform-replace): Don't set inhibit-read-only using | 8 | * replace.el (perform-replace): Don't set inhibit-read-only using |
diff --git a/lisp/ido.el b/lisp/ido.el index 7d28b101d35..4d786eb8e33 100644 --- a/lisp/ido.el +++ b/lisp/ido.el | |||
| @@ -353,7 +353,7 @@ Setting this variable directly does not take effect; | |||
| 353 | use either \\[customize] or the function `ido-mode'." | 353 | use either \\[customize] or the function `ido-mode'." |
| 354 | :set #'(lambda (symbol value) | 354 | :set #'(lambda (symbol value) |
| 355 | (ido-mode value)) | 355 | (ido-mode value)) |
| 356 | :initialize 'custom-initialize-set | 356 | :initialize 'custom-initialize-default |
| 357 | :require 'ido | 357 | :require 'ido |
| 358 | :link '(emacs-commentary-link "ido.el") | 358 | :link '(emacs-commentary-link "ido.el") |
| 359 | :set-after '(ido-save-directory-list-file | 359 | :set-after '(ido-save-directory-list-file |