emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/iedit f348f2d8fb 004/301: updates


From: ELPA Syncer
Subject: [nongnu] elpa/iedit f348f2d8fb 004/301: updates
Date: Mon, 10 Jan 2022 22:58:44 -0500 (EST)

branch: elpa/iedit
commit f348f2d8fb860c4951aedcfe866de86dc8961fc4
Author: anybody <anybody@emacswiki.org>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    updates
---
 iedit.el | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/iedit.el b/iedit.el
index 11b7392c56..89d35ec3cf 100644
--- a/iedit.el
+++ b/iedit.el
@@ -1,8 +1,8 @@
 ;;; iedit.el --- Edit multiple regions with the same content simultaneously.
 
-;; Copyright (C) 2010 Victor Ren
+;; Copyright (C) 2010, 2011 Victor Ren
 
-;; Time-stamp: <2011-02-25 14:54:30 Victor Ren>
+;; Time-stamp: <2011-10-02 00:04:12 Victor Ren>
 ;; Author: Victor Ren <victorhge@gmail.com>
 ;; Keywords: occurrence region replace simultaneous
 ;; Version: 0.90
@@ -248,9 +248,9 @@ Commands:
       (cond ((and arg iedit-last-occurrence-in-history)
              (setq occurrence iedit-last-occurrence-in-history))
             ((and transient-mark-mode mark-active (not (equal (mark) (point))))
-             (setq occurrence (buffer-substring (mark) (point))))
+             (setq occurrence (buffer-substring-no-properties (mark) (point))))
             ((and isearch-mode (not (string= isearch-string "")))
-             (setq occurrence isearch-string)
+             (setq occurrence (buffer-substring-no-properties (point) 
isearch-other-end))
              (isearch-exit))
             ((and iedit-current-word-default (current-word t))
              (setq occurrence (current-word)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]