Dr. Werner Fink 2015-07-13 11:17:23 +00:00 committed by Git OBS Bridge
parent 97af20a2d4
commit 504412f5b3
3 changed files with 19 additions and 3 deletions

View File

@ -11,8 +11,7 @@
;; Load custom file
;; ----------------
(setq custom-file "~/.xemacs/custom.el")
(if (file-exists-p custom-file)
(load-options-file custom-file))
(load-options-file custom-file)
;;
;; More coding systems (UNICODE)

View File

@ -1,6 +1,7 @@
---
lisp/cus-face.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
lisp/startup.el | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
--- lisp/cus-face.el
+++ lisp/cus-face.el 2015-07-10 10:52:20.177518702 +0000
@ -24,3 +25,14 @@
;;;###autoload
(defun custom-theme-set-faces (theme &rest args)
--- lisp/startup.el
+++ lisp/startup.el 2015-07-13 11:14:12.609518333 +0000
@@ -1101,7 +1101,7 @@ exact problem."
Currently this does nothing but call `load', but it might be redefined
in the future to support automatically converting older options files to
a new format, when variables have changed, etc."
- (load filename))
+ (load filename t))
(defun command-line-1 ()
(cond

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jul 13 11:16:32 UTC 2015 - werner@suse.de
- Avoid error on not existing custom.el
-------------------------------------------------------------------
Fri Jul 10 11:23:15 UTC 2015 - werner@suse.de