From 4323a19b1535c54299003299ab36ac1cc8c5dc7f Mon Sep 17 00:00:00 2001 From: Ihor Radchenko Date: Tue, 13 Dec 2022 14:12:18 +0300 Subject: [PATCH] org-hide-drawer-startup: Add missing variable alias MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * lisp/org.el (org-hide-drawer-startup): Make alias to `org-cycle-hide-drawer-startup'. Reported-by: Kévin Le Gouguec Link: https://orgmode.org/list/877cyvzrcu.fsf@gmail.com --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index 3018e4d6f..641720001 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -102,6 +102,7 @@ (require 'org-cycle) (defvaralias 'org-hide-block-startup 'org-cycle-hide-block-startup) +(defvaralias 'org-hide-drawer-startup 'org-cycle-hide-drawer-startup) (defvaralias 'org-pre-cycle-hook 'org-cycle-pre-hook) (defvaralias 'org-tab-first-hook 'org-cycle-tab-first-hook) (defalias 'org-global-cycle #'org-cycle-global)