Fix byte-compile issues

This commit is contained in:
Shohei YOSHIDA 2021-11-07 18:51:50 +09:00
parent 48470a4b85
commit 446967b768
No known key found for this signature in database
GPG Key ID: C9A1BB11BB940CF2

View File

@ -41,6 +41,7 @@
(require 'dash)
(require 'f)
(require 'em-banner)
(require 'json)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -60,7 +61,9 @@
(defconst eshell-info-banner--min-length-left 8
"Minimum length of text on the left hand side of the banner.")
(defconst eshell-info-banner--macos-versions
(eval-when-compile
(defconst eshell-info-banner--macos-versions
'(("10.4" . "Mac OS X Tiger")
("10.5" . "Mac OS X Leopard")
("10.6" . "Mac OS X Snow Leopard")
@ -79,7 +82,7 @@
("11.2" . "macOS Big Sur")
("11.3" . "macOS Big Sur")
("11.4" . "macOS Big Sur"))
"Versions of OSX and macOS and their name.")
"Versions of OSX and macOS and their name."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;