Merge pull request #13 from syohex/byte-compile-warning

Fix byte-compile issues
This commit is contained in:
2021-11-07 12:58:43 +01:00
committed by GitHub

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."))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;