emacs-emojify

fork of https://github.com/iqbalansari/emacs-emojify
Log | Files | Refs | LICENSE

commit 0fc0fe12b55b69ae0d4cb0a04b7b576c05b84af2
parent 7c07c7ae924fa13dbb1951cdf8f873d3c38d0ad2
Author: Iqbal Ansari <iqbal.ansari@ignitesol.com>
Date:   Wed, 28 Sep 2016 18:18:55 +0530

Fix thinko in set-buffer-multibyte advice

Diffstat:
Memojify.el | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/emojify.el b/emojify.el @@ -1357,9 +1357,9 @@ run the command `emojify-download-emoji'"))) buffer changes back to multibyte encoding." (ignore-errors (if enable-multibyte-characters - (emojify-mode -1) - (when global-emojify-mode - (emojify-mode +1))))) + (when global-emojify-mode + (emojify-mode +1)) + (emojify-mode -1)))) (ad-activate #'set-buffer-multibyte)