branch: externals/greader
commit 690d35be1c28eaf60ae720666ea6ffe86da8d43e
Author: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com>
Commit: Michelangelo Rodriguez <michelangelo.rodrig...@gmail.com>

    Function `greader-dict-substitute-word' fixed.
    
    Now it works with "\" correctly.
---
 greader-dict.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/greader-dict.el b/greader-dict.el
index ae00dcfcda..f0365f9d67 100644
--- a/greader-dict.el
+++ b/greader-dict.el
@@ -335,7 +335,7 @@ as a word definition."
               (concat (match-string 1)
                       (gethash match greader-dictionary)
                       (match-string 3))))
-         (replace-match replacement))
+         (replace-match replacement nil t))
        (goto-char (point-min))))))
 
 ;; This function adds to the `greader-dictionary' variable the

Reply via email to