about summary refs log tree commit diff stats
path: root/lisp/acdw-org.el
diff options
context:
space:
mode:
authorCase Duckworth2021-10-06 17:04:25 -0500
committerCase Duckworth2021-10-06 17:04:25 -0500
commit526d713da1167adcf99350c954e923a98957e540 (patch)
tree0dcaf3b9574956e3f351b7bde1a8dd6cde9670b9 /lisp/acdw-org.el
parentIgnore DEADLINE and SCHEDULED in acdw-org/count-words-stupidly (diff)
downloademacs-526d713da1167adcf99350c954e923a98957e540.tar.gz
emacs-526d713da1167adcf99350c954e923a98957e540.zip
Add org-closed-time-regexp to skips when counting words
Diffstat (limited to 'lisp/acdw-org.el')
-rw-r--r--lisp/acdw-org.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index 3358365..05e6409 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el
@@ -306,7 +306,8 @@ instead of the true count."
306 (forward-line)) 306 (forward-line))
307 ;; Ignore DEADLINE and SCHEDULED keywords 307 ;; Ignore DEADLINE and SCHEDULED keywords
308 ((or (looking-at org-deadline-regexp) 308 ((or (looking-at org-deadline-regexp)
309 (looking-at org-scheduled-regexp)) 309 (looking-at org-scheduled-regexp)
310 (looking-at org-closed-time-regexp))
310 (forward-line)) 311 (forward-line))
311 ;; Ignore tables 312 ;; Ignore tables
312 ((org-at-table-p) (forward-line)) 313 ((org-at-table-p) (forward-line))