From f416ee1a24e2fe1afb21d44ce004be6e4c7ed368 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 13 Nov 2015 23:29:04 +0100 Subject: [PATCH] Silence byte-compiler --- lisp/org-compat.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lisp/org-compat.el b/lisp/org-compat.el index 8632eb6a2..33f623084 100644 --- a/lisp/org-compat.el +++ b/lisp/org-compat.el @@ -542,13 +542,14 @@ Implements `file-equal-p' for older emacsen and XEmacs." ;; As of Emacs 25.1, `outline-mode` functions are under the 'outline-' ;; prefix and `find-tag` is replaced with `xref-find-definition`. (when (< emacs-major-version 25) - (defalias 'outline-show-all 'show-all) - (defalias 'outline-hide-subtree 'hide-subtree) - (defalias 'outline-show-subtree 'show-subtree) - (defalias 'outline-show-branches 'show-branches) - (defalias 'outline-show-entry 'show-entry) (defalias 'outline-hide-entry 'hide-entry) (defalias 'outline-hide-sublevels 'hide-sublevels) + (defalias 'outline-hide-subtree 'hide-subtree) + (defalias 'outline-show-all 'show-all) + (defalias 'outline-show-branches 'show-branches) + (defalias 'outline-show-children 'show-children) + (defalias 'outline-show-entry 'show-entry) + (defalias 'outline-show-subtree 'show-subtree) (defalias 'xref-find-definitions 'find-tag)) (defmacro org-with-silent-modifications (&rest body)