diff options
| author | Michelangelo Rodriguez <michelangelo.rodriguez@gmail.com> | 2024-07-20 05:12:35 +0200 |
|---|---|---|
| committer | Michelangelo Rodriguez <michelangelo.rodriguez@gmail.com> | 2024-07-20 05:12:35 +0200 |
| commit | 690d35be1c28eaf60ae720666ea6ffe86da8d43e (patch) | |
| tree | c6445346628224f61b4b70aaa41b844865dceddc /greader-dict.el | |
| parent | cf1db7405bfa694c837e1d3e4d759b47d5956524 (diff) | |
Function `greader-dict-substitute-word' fixed.
Now it works with "\" correctly.
Diffstat (limited to 'greader-dict.el')
| -rw-r--r-- | greader-dict.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/greader-dict.el b/greader-dict.el index ae00dcf..f0365f9 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 |
