branch: externals/greader
commit 5016c5afa48b924bd256340ed238407cb3ba8749
Author: Michelangelo Rodriguez <[email protected]>
Commit: Michelangelo Rodriguez <[email protected]>
Function `greader-toggle-punctuation' fixed.
Now it calls `greader-tts-stop' instead of `greader-stop' to avoid
calling stop related hooks.
---
greader.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/greader.el b/greader.el
index ada366aaf8..b731976361 100644
--- a/greader.el
+++ b/greader.el
@@ -766,7 +766,7 @@ the current backend"))))
(defun greader-toggle-punctuation ()
"Toggle punctuation locally for current buffer."
(interactive)
- (greader-stop)
+ (greader-tts-stop)
(greader-call-backend 'punctuation 'toggle)
(greader-read))