diff options
-rw-r--r-- | init.el | 2 | ||||
-rw-r--r-- | lisp/acdw-org.el | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/init.el b/init.el index d60915b..532a1af 100644 --- a/init.el +++ b/init.el | |||
@@ -1528,7 +1528,7 @@ successive invocations." | |||
1528 | (setup (:straight wc-mode) ; TODO: move some of this stuff around | 1528 | (setup (:straight wc-mode) ; TODO: move some of this stuff around |
1529 | 1529 | ||
1530 | (:option wc-modeline-format "[%tww]" | 1530 | (:option wc-modeline-format "[%tww]" |
1531 | wc-idle-wait 0) | 1531 | wc-idle-wait 2) |
1532 | 1532 | ||
1533 | (:hook-into text-mode) | 1533 | (:hook-into text-mode) |
1534 | 1534 | ||
diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index f8f23c6..123c701 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el | |||
@@ -272,7 +272,8 @@ instead of the true count." | |||
272 | ;; Ignore drawers | 272 | ;; Ignore drawers |
273 | ((or (looking-at org-drawer-regexp) | 273 | ((or (looking-at org-drawer-regexp) |
274 | (looking-at org-clock-drawer-re)) | 274 | (looking-at org-clock-drawer-re)) |
275 | (search-forward ":END:" nil :noerror)) | 275 | (search-forward ":END:" nil :noerror) |
276 | (forward-line)) | ||
276 | ;; Ignore tables | 277 | ;; Ignore tables |
277 | ((org-at-table-p) (forward-line)) | 278 | ((org-at-table-p) (forward-line)) |
278 | ;; Ignore hyperlinks, but count the descriptions | 279 | ;; Ignore hyperlinks, but count the descriptions |