branch: elpa/anzu
commit d6ffd23cb5d5462afea7eecd399ed0cd9bb77838
Author: akicho8 <[email protected]>
Commit: akicho8 <[email protected]>
Fix word replace in region
---
anzu.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/anzu.el b/anzu.el
index 44a9f0e607..dc31378a24 100644
--- a/anzu.el
+++ b/anzu.el
@@ -661,9 +661,9 @@
(point-max))))
(defun anzu--region-begin (use-region thing backward)
- (cond (current-prefix-arg (line-beginning-position))
+ (cond (use-region (region-beginning))
+ (current-prefix-arg (line-beginning-position))
(thing (anzu--thing-begin thing))
- (use-region (region-beginning))
(backward (point-min))
(t (point))))
@@ -673,10 +673,10 @@
(line-end-position)))
(defun anzu--region-end (use-region thing)
- (cond (current-prefix-arg
+ (cond (use-region (region-end))
+ (current-prefix-arg
(anzu--line-end-position (prefix-numeric-value current-prefix-arg)))
(thing (anzu--thing-end thing))
- (use-region (region-end))
(t (point-max))))
(defun anzu--begin-thing (at-cursor thing)