about summary refs log tree commit diff stats
path: root/lisp/acdw-org.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/acdw-org.el')
-rw-r--r--lisp/acdw-org.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index f210301..96f3f69 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el
@@ -317,6 +317,9 @@ instead of the true count."
317 (goto-char (match-end 0))) 317 (goto-char (match-end 0)))
318 ;; Ignore source blocks 318 ;; Ignore source blocks
319 ((org-in-src-block-p) (forward-line)) 319 ((org-in-src-block-p) (forward-line))
320 ;; Ignore blank lines
321 ((looking-at "^$")
322 (forward-line))
320 ;; Count everything else 323 ;; Count everything else
321 (t 324 (t
322 ;; ... unless it's in a few weird contexts 325 ;; ... unless it's in a few weird contexts