diff options
author | Case Duckworth | 2021-08-13 17:22:37 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-13 17:22:37 -0500 |
commit | 1d57a818c2b4c6e103e416e593758e6dc5c1114f (patch) | |
tree | 6cb4d58f1584be31e201ccfc72a13c81a77deebb /lisp | |
parent | Edit `acdw-org/count-words-stupidly' to be even MOAR stupider (diff) | |
download | emacs-1d57a818c2b4c6e103e416e593758e6dc5c1114f.tar.gz emacs-1d57a818c2b4c6e103e416e593758e6dc5c1114f.zip |
Correct </> bug
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/acdw-org.el | 2 |
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)))))) |