emacs-emojify

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

commit 133ced9537e3c1081d37ef707995bf1700b4e480
parent 1a3b81d9aa2c9f2e1ec6b6ae3cdf4b3bc809411d
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Date:   Wed, 11 Nov 2015 17:26:20 +0530

Add missing autoload

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

diff --git a/emojify.el b/emojify.el @@ -675,6 +675,7 @@ runs (only emojify's) point motion hooks." ;; Uninstall our after change function (remove-hook 'after-change-functions #'emojify-after-change-function t)) +;;;###autoload (define-minor-mode emojify-mode "Emojify mode" :init-value nil @@ -684,7 +685,7 @@ runs (only emojify's) point motion hooks." ;; Turn off (emojify-turn-off-emojify-mode))) -;; While this is convenient it is not really what we want +;;;###autoload (define-globalized-minor-mode global-emojify-mode emojify-mode emojify-mode :init-value nil)