diff options
| author | Stefan Monnier | 2015-04-13 18:21:00 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2015-04-13 18:21:00 -0400 |
| commit | 40d67a3b0bf7ef48ec8dc3126206d2079f24cc0b (patch) | |
| tree | 467f3e251a94f04c71037bf88629157b74242bc9 | |
| parent | 2bad549b954ccd659d8db58cf1e42e257496803b (diff) | |
| download | emacs-40d67a3b0bf7ef48ec8dc3126206d2079f24cc0b.tar.gz emacs-40d67a3b0bf7ef48ec8dc3126206d2079f24cc0b.zip | |
* lisp/loadup.el ("cus-start"): Load it after loaddefs.el
Fixes: debbugs:20321
* lisp/cus-start.el (read-buffer-function): Don't advertize
iswitchb-read-buffer any more.
(iswitchb): Don't tweak this obsolete group any more.
| -rw-r--r-- | lisp/cus-start.el | 2 | ||||
| -rw-r--r-- | lisp/loadup.el | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index b96b81763ce..05135b80e8e 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el | |||
| @@ -379,7 +379,6 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of | |||
| 379 | ;; options property set at end | 379 | ;; options property set at end |
| 380 | (read-buffer-function minibuffer | 380 | (read-buffer-function minibuffer |
| 381 | (choice (const nil) | 381 | (choice (const nil) |
| 382 | (function-item iswitchb-read-buffer) | ||
| 383 | function)) | 382 | function)) |
| 384 | ;; msdos.c | 383 | ;; msdos.c |
| 385 | (dos-unsupported-char-glyph display integer) | 384 | (dos-unsupported-char-glyph display integer) |
| @@ -654,7 +653,6 @@ since it could result in memory overflow and make Emacs crash." | |||
| 654 | ((eq prop :tag) | 653 | ((eq prop :tag) |
| 655 | (put symbol 'custom-tag propval)))))))) | 654 | (put symbol 'custom-tag propval)))))))) |
| 656 | 655 | ||
| 657 | (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) | ||
| 658 | (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start | 656 | (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start |
| 659 | 'custom-variable) | 657 | 'custom-variable) |
| 660 | 658 | ||
diff --git a/lisp/loadup.el b/lisp/loadup.el index 003b0db4abd..51339253ddd 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -103,7 +103,6 @@ | |||
| 103 | (load "bindings") | 103 | (load "bindings") |
| 104 | ;; This sets temporary-file-directory, used by eg | 104 | ;; This sets temporary-file-directory, used by eg |
| 105 | ;; auto-save-file-name-transforms in files.el. | 105 | ;; auto-save-file-name-transforms in files.el. |
| 106 | (load "cus-start") | ||
| 107 | (load "window") ; Needed here for `replace-buffer-in-windows'. | 106 | (load "window") ; Needed here for `replace-buffer-in-windows'. |
| 108 | (setq load-source-file-function 'load-with-code-conversion) | 107 | (setq load-source-file-function 'load-with-code-conversion) |
| 109 | (load "files") | 108 | (load "files") |
| @@ -144,6 +143,7 @@ | |||
| 144 | ;; In case loaddefs hasn't been generated yet. | 143 | ;; In case loaddefs hasn't been generated yet. |
| 145 | (file-error (load "ldefs-boot.el"))) | 144 | (file-error (load "ldefs-boot.el"))) |
| 146 | 145 | ||
| 146 | (load "cus-start") ;After loaddefs to autoload pcase-dolist. | ||
| 147 | (load "emacs-lisp/nadvice") | 147 | (load "emacs-lisp/nadvice") |
| 148 | (load "emacs-lisp/cl-preloaded") | 148 | (load "emacs-lisp/cl-preloaded") |
| 149 | (load "minibuffer") ;After loaddefs, for define-minor-mode. | 149 | (load "minibuffer") ;After loaddefs, for define-minor-mode. |