Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
08c73cdc
Commit
08c73cdc
authored
Feb 20, 2017
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
; Add a new TODO item
* etc/TODO: Add a new entry for :set-after. * lisp/startup.el: Related comment.
parent
bfd1afb3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
etc/TODO
etc/TODO
+11
-0
lisp/startup.el
lisp/startup.el
+1
-1
No files found.
etc/TODO
View file @
08c73cdc
...
...
@@ -968,6 +968,17 @@ addition, toolkit builds create their menu bars in toolkit-specific
parts of code, bypassing xdisp.c, so those parts need to be enhanced
with toolkit-specific code to display the menu bar right to left.
** Custom
*** Extend :set-after to also mean initialize after.
If defcustom A specifies :set-after '(B), then if a user customizes
both A and B, custom will set A after B. But if the user only customizes
A, then if B is already defined, it gets left at its original setting.
Instead, if B has not been customized it should be re-initialized
(on the assumption that the default value depends on A).
See the places where we manually call custom-reevaluate-setting,
such as for mail-host-address and user-mail-address in startup.el.
** ImageMagick support
*** image-type-header-regexps priorities the jpeg loader over the
...
...
lisp/startup.el
View file @
08c73cdc
...
...
@@ -1298,7 +1298,7 @@ the `--debug-init' option to view a complete error backtrace."
;; Yes, this is ugly, but slightly less so than leaving
;; user-mail-address uninitialized during init file processing.
;; Perhaps we should make :set-after do something like this?
;; Ie, extend it to also mean (re)initialize-after.
;; Ie, extend it to also mean (re)initialize-after.
See etc/TODO.
(equal user-mail-address
(let (mail-host-address)
(ignore-errors
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment