From 3a736c51bcc50d04d89197fcabd4d7b30f3f3dba Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Wed, 28 May 2014 14:16:21 +0200 Subject: [PATCH] org-entities: forward declaration of org-toggle-pretty-entities and org-pretty-entities * lisp/org-entities.el: Remove superfluous require of org-macs. Forward declare 'org-toggle-pretty-entities' and 'org-pretty-entities'. --- lisp/org-entities.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/org-entities.el b/lisp/org-entities.el index ba1eed12b..6324a625d 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -27,9 +27,8 @@ ;;; Code: -(require 'org-macs) - -(declare-function org-table-align "org-table" ()) +(declare-function org-toggle-pretty-entities "org" ()) +(declare-function org-table-align "org-table" ()) (eval-when-compile (require 'cl)) @@ -568,6 +567,7 @@ Kind can be any of `latex', `html', `ascii', `latin1', or `utf8'." (goto-char pos) (org-table-align))) +(defvar org-pretty-entities) ;; declare defcustom from org (defun org-entities-help () "Create a Help buffer with all available entities." (interactive) -- 2.11.4.GIT