branch: externals/greader commit 002a24716290174cdf042dd531628d5613338dd5 Author: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com> Commit: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com>
Better handling of chunks of text. --- greader.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greader.el b/greader.el index 4e525dcac8..f48c309438 100644 --- a/greader.el +++ b/greader.el @@ -503,7 +503,7 @@ if `GOTO-MARKER' is t and if you pass a prefix to this (when (not (eobp)) (forward-sentence)) (if (> (point) sentence-start) - (buffer-substring-no-properties sentence-start (point)) + (string-trim (buffer-substring-no-properties sentence-start (point)) "[ \t\n\r]+") nil)))) (defun greader-sentence-at-point ()