diff options
| author | Glenn Morris | 2012-04-10 00:19:38 -0700 |
|---|---|---|
| committer | Glenn Morris | 2012-04-10 00:19:38 -0700 |
| commit | 57c3bd0133dd6f06b1d2882078778ed437be8c22 (patch) | |
| tree | 070c6758a816fd3df01c64b5563e94f2e5fe37ad | |
| parent | a9f72fc14ec65ae6f7cbd8eaea1f81c896162ecc (diff) | |
| download | emacs-57c3bd0133dd6f06b1d2882078778ed437be8c22.tar.gz emacs-57c3bd0133dd6f06b1d2882078778ed437be8c22.zip | |
Remove some more "rogue" defcustoms that show up in emacs -Q
* lisp/cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac):
Add :standard values, reducing "rogue" customs in emacs -Q a bit more.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/cus-start.el | 15 |
2 files changed, 17 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fd4457e973c..fb7e3c1233f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * cus-start.el (eol-mnemonic-unix, eol-mnemonic-dos, eol-mnemonic-mac): | ||
| 4 | Add :standard values, reducing "rogue" customs in emacs -Q a bit more. | ||
| 5 | |||
| 1 | 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change) | 6 | 2012-04-10 Florian Adamsky <florian@adamsky.it> (tiny change) |
| 2 | 7 | ||
| 3 | * recentf.el (recentf-dialog-mode-map): Added two keybindings for | 8 | * recentf.el (recentf-dialog-mode-map): Added two keybindings for |
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index fbba49951d1..83973e4a534 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -138,9 +138,18 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 138 | ;; coding.c | 138 | ;; coding.c |
| 139 | (inhibit-eol-conversion mule boolean) | 139 | (inhibit-eol-conversion mule boolean) |
| 140 | (eol-mnemonic-undecided mule string) | 140 | (eol-mnemonic-undecided mule string) |
| 141 | (eol-mnemonic-unix mule string) | 141 | ;; startup.el fiddles with the values. IMO, would be |
| 142 | (eol-mnemonic-dos mule string) | 142 | ;; simpler to just use #ifdefs in coding.c. |
| 143 | (eol-mnemonic-mac mule string) | 143 | (eol-mnemonic-unix mule string nil |
| 144 | :standard | ||
| 145 | (if (memq system-type '(ms-dos windows-nt)) | ||
| 146 | "(Unix)" ":")) | ||
| 147 | (eol-mnemonic-dos mule string nil | ||
| 148 | :standard | ||
| 149 | (if (memq system-type '(ms-dos windows-nt)) | ||
| 150 | "\\" "(DOS)")) | ||
| 151 | (eol-mnemonic-mac mule string nil | ||
| 152 | :standard "(Mac)") | ||
| 144 | (file-coding-system-alist | 153 | (file-coding-system-alist |
| 145 | mule | 154 | mule |
| 146 | (alist | 155 | (alist |