mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
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.
This commit is contained in:
parent
a9f72fc14e
commit
57c3bd0133
2 changed files with 17 additions and 3 deletions
|
|
@ -138,9 +138,18 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
|
|||
;; coding.c
|
||||
(inhibit-eol-conversion mule boolean)
|
||||
(eol-mnemonic-undecided mule string)
|
||||
(eol-mnemonic-unix mule string)
|
||||
(eol-mnemonic-dos mule string)
|
||||
(eol-mnemonic-mac mule string)
|
||||
;; startup.el fiddles with the values. IMO, would be
|
||||
;; simpler to just use #ifdefs in coding.c.
|
||||
(eol-mnemonic-unix mule string nil
|
||||
:standard
|
||||
(if (memq system-type '(ms-dos windows-nt))
|
||||
"(Unix)" ":"))
|
||||
(eol-mnemonic-dos mule string nil
|
||||
:standard
|
||||
(if (memq system-type '(ms-dos windows-nt))
|
||||
"\\" "(DOS)"))
|
||||
(eol-mnemonic-mac mule string nil
|
||||
:standard "(Mac)")
|
||||
(file-coding-system-alist
|
||||
mule
|
||||
(alist
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue