From b2fca73e30a064490a659b7318288fe6f0475414 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 16 Sep 2014 09:30:29 +0200 Subject: [PATCH] Tiny refactoring * lisp/org.el (org-hide-block-toggle-maybe): Tiny refactoring. --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index bcbe1b7ae..cd57ec70d 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -7326,7 +7326,7 @@ Optional arguments START and END can be used to limit the range." Unlike to `org-hide-block-toggle', this function does not throw an error. Return a non-nil value when toggling is successful." (interactive) - (and (ignore-errors (org-hide-block-toggle)) t)) + (ignore-errors (org-hide-block-toggle))) (defun org-hide-block-toggle (&optional force) "Toggle the visibility of the current block. -- 2.11.4.GIT