diff options
author | Po Lu <luangruo@yahoo.com> | 2024-05-26 11:50:13 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2024-05-26 11:50:45 +0800 |
commit | 74ceb6922c621cf48a2c9f6e6622133b522252ab (patch) | |
tree | 6a472eee069d100796ff7e06b2d57c276b259262 /lisp/emacs-lisp | |
parent | 2a12f39ffe87b0b2885d9b7e92962eeed3c8029e (diff) | |
download | emacs-74ceb6922c621cf48a2c9f6e6622133b522252ab.tar.gz emacs-74ceb6922c621cf48a2c9f6e6622133b522252ab.tar.bz2 emacs-74ceb6922c621cf48a2c9f6e6622133b522252ab.zip |
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.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/loaddefs-gen.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/loaddefs-gen.el b/lisp/emacs-lisp/loaddefs-gen.el index 581053f6304..50e90cdf94c 100644 --- a/lisp/emacs-lisp/loaddefs-gen.el +++ b/lisp/emacs-lisp/loaddefs-gen.el @@ -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))) |