aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2019-08-24 16:45:10 +0300
committerEli Zaretskii2019-08-24 16:45:10 +0300
commit6d70161de6f675a1cf8257da231845189ce19793 (patch)
tree3c75af765f691e537e96e0f40096fc095f4a2a39
parent42f8fa80706ee34bba98a922e2f42edcfe474bc9 (diff)
downloademacs-6d70161de6f675a1cf8257da231845189ce19793.tar.gz
emacs-6d70161de6f675a1cf8257da231845189ce19793.zip
Revert "Recompute user-emacs-directory-relative defcustoms one more time"
This reverts commit bb5cd7c4caf415e40836edbbc4e62b0dd411d73f. See bug#37173.
-rw-r--r--lisp/startup.el12
1 files changed, 2 insertions, 10 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index ff90646d7ae..564428580b1 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -406,7 +406,6 @@ if you have not already set `auto-save-list-file-name' yourself.
406Directories in the prefix will be created if necessary. 406Directories in the prefix will be created if necessary.
407Set this to nil if you want to prevent `auto-save-list-file-name' 407Set this to nil if you want to prevent `auto-save-list-file-name'
408from being initialized." 408from being initialized."
409 :initialize 'custom-initialize-delay
410 :type '(choice (const :tag "Don't record a session's auto save list" nil) 409 :type '(choice (const :tag "Don't record a session's auto save list" nil)
411 string) 410 string)
412 :group 'auto-save) 411 :group 'auto-save)
@@ -1283,7 +1282,8 @@ please check its value")
1283 ;; depends on the runtime context, in case some of them depend on 1282 ;; depends on the runtime context, in case some of them depend on
1284 ;; the window-system features. Example: blink-cursor-mode. 1283 ;; the window-system features. Example: blink-cursor-mode.
1285 (let (current-load-list) ; c-r-s may call defvar, and hence LOADHIST_ATTACH 1284 (let (current-load-list) ; c-r-s may call defvar, and hence LOADHIST_ATTACH
1286 (mapc 'custom-reevaluate-setting custom-delayed-init-variables)) 1285 (mapc 'custom-reevaluate-setting custom-delayed-init-variables)
1286 (setq custom-delayed-init-variables nil))
1287 1287
1288 (normal-erase-is-backspace-setup-frame) 1288 (normal-erase-is-backspace-setup-frame)
1289 1289
@@ -1377,14 +1377,6 @@ please check its value")
1377 (eq face-ignored-fonts old-face-ignored-fonts)) 1377 (eq face-ignored-fonts old-face-ignored-fonts))
1378 (clear-face-cache))) 1378 (clear-face-cache)))
1379 1379
1380 ;; Re-evaluate again the predefined variables whose initial value
1381 ;; depends on the runtime context, in case the user init file
1382 ;; modified user-emacs-directory. Examples: abbrev-file-name,
1383 ;; auto-save-list-file-prefix.
1384 (let (current-load-list) ; c-r-s may call defvar, and hence LOADHIST_ATTACH
1385 (mapc 'custom-reevaluate-setting custom-delayed-init-variables)
1386 (setq custom-delayed-init-variables nil))
1387
1388 (setq after-init-time (current-time)) 1380 (setq after-init-time (current-time))
1389 ;; Display any accumulated warnings after all functions in 1381 ;; Display any accumulated warnings after all functions in
1390 ;; `after-init-hook' like `desktop-read' have finalized possible 1382 ;; `after-init-hook' like `desktop-read' have finalized possible