emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 1690fbd: org-colview: Fix dynblock match/maxlevel c


From: ELPA Syncer
Subject: [elpa] externals/org 1690fbd: org-colview: Fix dynblock match/maxlevel conflict
Date: Tue, 31 Aug 2021 10:57:15 -0400 (EDT)

branch: externals/org
commit 1690fbd88f4d55dc0e3c3af44f9fec534e75b601
Author: Nick Dokos <ndokos@gmail.com>
Commit: TEC <tec@tecosaur.com>

    org-colview: Fix dynblock match/maxlevel conflict
    
    * lisp/org-coplview.el (org-columns--capture-view): Combine the match
    and maxlevel arguments properly to construct the MATCH argument of
    `org-map-entries'.
    
    Specifying both `maxlevel' and `match' in a columnview dynamic block
    does not work: the `match' argument is ignored in that case.  See the
    link below for a (not so minimal) ECM.
    
    Reported-by: Pablo A Perez-Fernandez
    Link: 
https://emacs.stackexchange.com/questions/66658/filter-columnview-dblock-on-properties-or-tags
---
 lisp/org-colview.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index 2e1c29a..7144308 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -1398,8 +1398,9 @@ other rows.  Each row is a list of fields, as strings, or
                                  (org-get-tags))))
             (push (cons (org-reduced-level (org-current-level)) (nreverse row))
                   table)))))
-     (or (and maxlevel (format "LEVEL<=%d" maxlevel))
-        (and match match))
+     (if match
+         (concat match (and maxlevel (format "+LEVEL<=%d" maxlevel)))
+       (and maxlevel (format "LEVEL<=%d" maxlevel)))
      (and local 'tree)
      'archive 'comment)
     (org-columns-quit)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]