diff options
author | Case Duckworth | 2021-10-06 17:04:25 -0500 |
---|---|---|
committer | Case Duckworth | 2021-10-06 17:04:25 -0500 |
commit | 526d713da1167adcf99350c954e923a98957e540 (patch) | |
tree | 0dcaf3b9574956e3f351b7bde1a8dd6cde9670b9 /lisp/acdw-org.el | |
parent | Ignore DEADLINE and SCHEDULED in acdw-org/count-words-stupidly (diff) | |
download | emacs-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.el | 3 |
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)) |