diff options
author | Case Duckworth | 2021-08-17 08:47:27 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-17 08:47:27 -0500 |
commit | 52b48c8d13e31cab391c5f7fbaf1884750d2d9fd (patch) | |
tree | c6c43b590b55e5f63133c9ef53279172acf3634f | |
parent | Break out functionality into other files (diff) | |
download | emacs-52b48c8d13e31cab391c5f7fbaf1884750d2d9fd.tar.gz emacs-52b48c8d13e31cab391c5f7fbaf1884750d2d9fd.zip |
Comment word-count limit in `acdw-org/count-words-stupidly'
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el index 968627d..31fc0be 100644 --- a/init.el +++ b/init.el | |||
@@ -1296,7 +1296,8 @@ successive invocations." | |||
1296 | (lambda (start end) "Count words stupidly with a limit." | 1296 | (lambda (start end) "Count words stupidly with a limit." |
1297 | (acdw-org/count-words-stupidly start | 1297 | (acdw-org/count-words-stupidly start |
1298 | end | 1298 | end |
1299 | 999))))) | 1299 | ;999 |
1300 | ))))) | ||
1300 | 1301 | ||
1301 | (setup (:straight org-appear) | 1302 | (setup (:straight org-appear) |
1302 | (:hook-into org-mode))) | 1303 | (:hook-into org-mode))) |