1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Address compilation errors and warnings on x86 Solaris 10 systems

* doc/misc/ede.texi (Extending EDE):

* doc/misc/flymake.texi (Top, Using Flymake): Insert punctuation
after xrefs.

* lisp/emacs-lisp/loaddefs-gen.el (loaddefs-generate): Print
number of files being scraped.

* src/dired.c (directory_files_internal):

* src/eval.c (Fmake_interpreted_closure, Fdefvaralias):

* src/fns.c (Fassoc): Work around optimizer failures.
This commit is contained in:
Po Lu 2024-05-26 11:50:13 +08:00
parent 2a12f39ffe
commit 74ceb6922c
6 changed files with 48 additions and 32 deletions

View file

@ -601,7 +601,6 @@ instead of just updating them with the new/changed autoloads."
(if (consp dir) dir (list dir)))))
(updating (and (file-exists-p output-file) (not generate-full)))
(defs nil))
;; Allow the excluded files to be relative.
(setq excluded-files
(mapcar (lambda (file) (expand-file-name file dir))
@ -610,7 +609,8 @@ instead of just updating them with the new/changed autoloads."
;; Collect all the autoload data.
(let ((progress (make-progress-reporter
(byte-compile-info
(concat "Scraping files for loaddefs"))
(format "Scraping %s files for loaddefs"
(length files)))
0 (length files) nil 10))
(output-time
(file-attribute-modification-time (file-attributes output-file)))