* lisp/emacs-lisp/autoload.el (autoload--make-defs-autoload):
Sort definition-prefixes, for stability.
This commit is contained in:
parent
4e464fa98a
commit
4fe8e8ba41
1 changed files with 2 additions and 1 deletions
|
@ -607,7 +607,8 @@ Don't try to split prefixes that are already longer than that.")
|
|||
nil))))
|
||||
prefixes)))
|
||||
`(if (fboundp 'register-definition-prefixes)
|
||||
(register-definition-prefixes ,file ',(delq nil strings)))))))
|
||||
(register-definition-prefixes ,file ',(sort (delq nil strings)
|
||||
'string<)))))))
|
||||
|
||||
(defun autoload--setup-output (otherbuf outbuf absfile load-name)
|
||||
(let ((outbuf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue