We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 546cc08 commit b190e6fCopy full SHA for b190e6f
test/development/compat.el
@@ -25,7 +25,7 @@
25
(dolist (func compat-functions)
26
(let ((exists-p))
27
(eask-with-progress
28
- (format " - Checked function %s... " (ansi-green func))
+ (format " - Checked function %s... " (ansi-green (format "%s" func)))
29
(setq exists-p (fboundp func))
30
(if exists-p "done ✓" "missing ✗"))
31
(unless exists-p
@@ -41,7 +41,7 @@
41
(dolist (var compat-variables)
42
43
44
- (format " - Checked variable %s... " (ansi-green var))
+ (format " - Checked variable %s... " (ansi-green (format "%s" var)))
45
(setq exists-p (boundp var))
46
47
0 commit comments