diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2017-03-07 13:22:04 +0000 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2017-03-07 13:46:48 +0000 |
commit | 11436e2890fda7367936b63b8fe2daca6957d3ef (patch) | |
tree | 1be529e1ebc1108f1be5481ba90a9162daf0a19a /admin | |
parent | 66b7543eab5f500f2e7cf0cce9b260991107fc97 (diff) | |
download | emacs-11436e2890fda7367936b63b8fe2daca6957d3ef.tar.gz |
Revert "Fix minor problems with loaddefs autogeneration"
This reverts commit f2bd2c1e6476acc71e71f6cb2a1c56c5edd900ba.
This commit has been reverted because the new mechanism was too
sensitive to changes in the lisp source, generation of new ldefs-boot
files was platform specific and resulted in warnings about undefined
variables.
Diffstat (limited to 'admin')
-rw-r--r-- | admin/ldefs-clean.el | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/admin/ldefs-clean.el b/admin/ldefs-clean.el index 33bc9e529fa..91512b4bbb7 100644 --- a/admin/ldefs-clean.el +++ b/admin/ldefs-clean.el @@ -57,9 +57,6 @@ (defun ldefs-clean () - ;; Remove CR characters produced on MS-DOS/MS-Windows systems. - (let ((coding-system-for-read 'utf-8-dos)) - (find-file "../lisp/ldefs-boot-auto.temp")) + (find-file "../lisp/ldefs-boot-auto.temp") (ldefs-clean-up) - (let ((coding-system-for-write 'utf-8-unix)) - (write-file "ldefs-boot-auto.el"))) + (write-file "ldefs-boot-auto.el")) |