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

Fix byte-compile issues
This commit is contained in:
Lucien Cartier-Tilet 2021-11-07 12:58:43 +01:00 committed by GitHub
commit 6dc46a1ab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 20 deletions

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