branch: master commit 3527b321ce02b796e22a4adb2b4c3f17899ca935 Author: Oleh Krehel <ohwoeo...@gmail.com> Commit: Oleh Krehel <ohwoeo...@gmail.com>
Fix byte compiler warnings * hydra.el: Require ring. * hydra-ox.el: Declare functions. --- hydra-ox.el | 7 +++++++ hydra.el | 1 + 2 files changed, 8 insertions(+) diff --git a/hydra-ox.el b/hydra-ox.el index 0d489e5..a992efc 100644 --- a/hydra-ox.el +++ b/hydra-ox.el @@ -27,6 +27,13 @@ (require 'hydra) (require 'org) +(declare-function org-html-export-as-html 'ox-html) +(declare-function org-html-export-to-html 'ox-html) +(declare-function org-latex-export-as-latex 'ox-latex) +(declare-function org-latex-export-to-latex 'ox-latex) +(declare-function org-latex-export-to-pdf 'ox-latex) +(declare-function org-ascii-export-as-ascii 'ox-ascii) +(declare-function org-ascii-export-to-ascii 'ox-ascii) (defhydradio hydra-ox () (body-only "Export only the body.") diff --git a/hydra.el b/hydra.el index c6fc306..b4c1926 100644 --- a/hydra.el +++ b/hydra.el @@ -82,6 +82,7 @@ ;;* Requires (require 'cl-lib) (require 'lv) +(require 'ring) (defvar hydra-curr-map nil "The keymap of the current Hydra called.")