about summary refs log tree commit diff stats
path: root/lisp/acdw-org.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-13 17:22:37 -0500
committerCase Duckworth2021-08-13 17:22:37 -0500
commit1d57a818c2b4c6e103e416e593758e6dc5c1114f (patch)
tree6cb4d58f1584be31e201ccfc72a13c81a77deebb /lisp/acdw-org.el
parentEdit `acdw-org/count-words-stupidly' to be even MOAR stupider (diff)
downloademacs-1d57a818c2b4c6e103e416e593758e6dc5c1114f.tar.gz
emacs-1d57a818c2b4c6e103e416e593758e6dc5c1114f.zip
Correct </> bug
Diffstat (limited to 'lisp/acdw-org.el')
-rw-r--r--lisp/acdw-org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/acdw-org.el b/lisp/acdw-org.el index 9f35dbc..3acc1f1 100644 --- a/lisp/acdw-org.el +++ b/lisp/acdw-org.el
@@ -337,7 +337,7 @@ instead of the true count."
337 ;; Count everything else 337 ;; Count everything else
338 (t (setq words (1+ words)) 338 (t (setq words (1+ words))
339 (if (and limit 339 (if (and limit
340 (< words limit)) 340 (> words limit))
341 (setq words limit 341 (setq words limit
342 continue nil)) 342 continue nil))
343 (forward-word-strictly)))))) 343 (forward-word-strictly))))))