diff options
| author | Kenichi Handa | 2006-10-23 06:20:04 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-10-23 06:20:04 +0000 |
| commit | 379ef0669525be9c792418d948e3bf2811ed4142 (patch) | |
| tree | d875fd8a4dc8673fbf2bc34491a6b9cdc0e8f9fb | |
| parent | 1eb53300a8df8b4184e8557da154e2aa5f203662 (diff) | |
| download | emacs-379ef0669525be9c792418d948e3bf2811ed4142.tar.gz emacs-379ef0669525be9c792418d948e3bf2811ed4142.zip | |
(global-auto-composition-mode): Make the initial
value not depend on emacs-basic-display.
| -rw-r--r-- | lisp/composite.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/composite.el b/lisp/composite.el index b7a4caab726..fc973452cec 100644 --- a/lisp/composite.el +++ b/lisp/composite.el | |||
| @@ -554,7 +554,7 @@ Auto Composition mode in all buffers (this is the default)." | |||
| 554 | auto-composition-mode turn-on-auto-composition-if-enabled | 554 | auto-composition-mode turn-on-auto-composition-if-enabled |
| 555 | :extra-args (dummy) | 555 | :extra-args (dummy) |
| 556 | :initialize 'custom-initialize-safe-default | 556 | :initialize 'custom-initialize-safe-default |
| 557 | :init-value (not (or noninteractive emacs-basic-display)) | 557 | :init-value (not noninteractive) |
| 558 | :group 'auto-composition | 558 | :group 'auto-composition |
| 559 | :version "23.1") | 559 | :version "23.1") |
| 560 | 560 | ||