]> code.delx.au - gnu-emacs-elpa/commitdiff
[Fix #18] Don't use char-displayable-p
authorArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 21 Oct 2015 21:38:51 +0000 (22:38 +0100)
committerArtur Malabarba <bruce.connor.am@gmail.com>
Wed, 21 Oct 2015 21:39:13 +0000 (22:39 +0100)
beacon.el

index de52875c6504014e011046ed9c07c82bb1f09c90..68f2b40989df48be21be3c9bd386b2fe9ecbf25b 100644 (file)
--- a/beacon.el
+++ b/beacon.el
@@ -5,7 +5,7 @@
 ;; Author: Artur Malabarba <emacs@endlessparentheses.com>
 ;; URL: https://github.com/Malabarba/beacon
 ;; Keywords: convenience
-;; Version: 0.2
+;; Version: 0.2.1
 ;; Package-Requires: ((seq "1.9"))
 
 ;; This program is free software; you can redistribute it and/or modify
@@ -350,9 +350,9 @@ unreliable, so just blink immediately."
 ;;; Minor-mode
 (defcustom beacon-lighter
   (cond
-   ((char-displayable-p ?💡) " ðŸ’¡")
-   ((char-displayable-p ?Λ) " Î›")
-   (t " *"))
+   ;; ((char-displayable-p ?💡) " ðŸ’¡")
+   ;; ((char-displayable-p ?Λ) " Î›")
+   (t " (*)"))
   "Lighter string used on the mode-line."
   :type 'string)