[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#31558: 27.0; `custom-file' settings messed up by Emacs 27
From: |
Drew Adams |
Subject: |
bug#31558: 27.0; `custom-file' settings messed up by Emacs 27 |
Date: |
Wed, 23 May 2018 11:15:24 -0700 (PDT) |
> > (defcustom tramp-verbose 3
> > "..."
> > :group 'tramp
> > :type 'integer
> > :set (lambda (sym val)
> > (when (require 'tramp nil t)
> > (custom-set-default sym val)))
> > :initialize 'custom-initialize-set)
>
> This results in
>
> Loading tramp...
> Recursive load: "/net/ford/albinus/src/tramp/lisp/tramp.elc",
> "/net/ford/albinus/src/tramp/lisp/tramp.elc",
> "/net/ford/albinus/src/tramp/lisp/tramp.elc",
> "/net/ford/albinus/src/tramp/lisp/tramp.elc",
> "/net/ford/albinus/src/tramp/lisp/tramp.elc"
Hm, indeed. Maybe :intialize needs to not try to set it here
(i.e., during loading).
Maybe :initialize needs to test (featurep 'tramp) or something?
Or maybe some other value of :initialize is appropriate?
`custom-initialize-default'?
`custom-initialize-safe-set'?
`custom-initialize-safe-default'?
Dunno. I'm no expert on loading and defcustom initialization.
> Well, maybe I try something like this next days, as time permits. And
> I'm always willing to test your proposals.
Thanks for taking a look at this.
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/22
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27,
Drew Adams <=
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/23
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Drew Adams, 2018/05/24
- bug#31558: 27.0; `custom-file' settings messed up by Emacs 27, Michael Albinus, 2018/05/29