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

; Fix byte-compilation warnings in admin/*.el

This commit is contained in:
Mattias Engdegård 2022-12-28 13:25:49 +01:00
parent 1a88a28ace
commit a6db8464e1
3 changed files with 5 additions and 2 deletions

View file

@ -843,8 +843,11 @@ $Date: %s $
(package-install pkg) (package-install pkg)
(require pkg nil t)))) (require pkg nil t))))
(declare-function org-html-export-as-html "ox-html.el")
(defvar org-html-postamble) (defvar org-html-postamble)
(defvar org-html-mathjax-template) (defvar org-html-mathjax-template)
(defvar htmlize-output-type)
(defun make-news-html-file (root version) (defun make-news-html-file (root version)
"Convert the NEWS file into an HTML file." "Convert the NEWS file into an HTML file."
(interactive (let ((root (interactive (let ((root

View file

@ -100,7 +100,7 @@ Also store it in `find-gc-unsafe-list'."
(defun trace-call-tree (&optional ignored) (defun trace-call-tree (&optional _ignored)
(message "Setting up directories...") (message "Setting up directories...")
(setq find-gc-subrs-called nil) (setq find-gc-subrs-called nil)
(let ((case-fold-search nil) (let ((case-fold-search nil)

View file

@ -293,7 +293,7 @@ should not be skipped."
"Try to resolve conflicts in FILE with smerge. "Try to resolve conflicts in FILE with smerge.
Returns non-nil if conflicts remain." Returns non-nil if conflicts remain."
(unless (file-exists-p file) (error "Gitmerge-resolve: Can't find %s" file)) (unless (file-exists-p file) (error "Gitmerge-resolve: Can't find %s" file))
(with-demoted-errors (with-demoted-errors "Error: %S"
(let ((exists (find-buffer-visiting file))) (let ((exists (find-buffer-visiting file)))
(with-current-buffer (let ((enable-local-variables :safe) (with-current-buffer (let ((enable-local-variables :safe)
(enable-local-eval nil)) (enable-local-eval nil))