Merge pull request #48 from kissge/fix-emojify

Fix emojify
This commit is contained in:
Matthew Fidler 2017-01-12 10:37:49 -06:00 committed by GitHub
commit 867ba93a9e
2 changed files with 2 additions and 3 deletions

View file

@ -35,6 +35,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- mode-icons now allows for a default icon. This can be turned on
with the new option `mode-icons-use-default-icon`
- Fix coloring algorithm for xpm images.
- Response to emojify's update.
## [0.4.0]

View file

@ -733,8 +733,6 @@ everywhere else."
(and (image-type-available-p 'xpm)
(file-exists-p (mode-icons--get-png-xpm-file icon-spec))))) ))
(defvar emojify-image-dir)
(defvar emojify-emojis)
(defvar mode-icons--gimp (executable-find "gimp")
@ -1139,7 +1137,7 @@ ACTIVE is a flag for if the current window is active."
(unless emojify-emojis
(emojify-set-emoji-data))
(let* ((emoji (ht-get emojify-emojis (nth 1 icon-spec)))
(image-file (expand-file-name (ht-get emoji "image") emojify-image-dir))
(image-file (expand-file-name (ht-get emoji "image") (emojify-image-dir)))
(image-type (intern (upcase (file-name-extension image-file)))))
(if (not (file-exists-p image-file))
(propertize (format "%s" mode)