aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2021-05-19 18:56:27 +0300
committerEli Zaretskii2021-05-19 18:56:27 +0300
commiteb9f48bfade95c0e0f23cd192526d7932939bc7a (patch)
tree554d7749ed35befb6776ef956e26bd2e5c0bf583
parente100ee84e358755c0dc8a449091bde28603970c6 (diff)
downloademacs-eb9f48bfade95c0e0f23cd192526d7932939bc7a.tar.gz
emacs-eb9f48bfade95c0e0f23cd192526d7932939bc7a.zip
* lisp/startup.el (command-line-1): Avoid byte-compiler warning.
-rw-r--r--lisp/startup.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 2ba5d745540..ac319612e82 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -2317,6 +2317,9 @@ A fancy display is used on graphic displays, normal otherwise."
2317 (set-buffer-major-mode (current-buffer)) 2317 (set-buffer-major-mode (current-buffer))
2318 (current-buffer)))) 2318 (current-buffer))))
2319 2319
2320;; This avoids byte-compiler warning in the unexec build.
2321(declare-function pdumper-stats "pdumper.c" ())
2322
2320(defun command-line-1 (args-left) 2323(defun command-line-1 (args-left)
2321 "A subroutine of `command-line'." 2324 "A subroutine of `command-line'."
2322 (display-startup-echo-area-message) 2325 (display-startup-echo-area-message)