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

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

[nongnu] elpa/iedit 68233e302d 300/301: Fix some byte-compiler warnings


From: ELPA Syncer
Subject: [nongnu] elpa/iedit 68233e302d 300/301: Fix some byte-compiler warnings in Emacs 28
Date: Mon, 10 Jan 2022 22:59:12 -0500 (EST)

branch: elpa/iedit
commit 68233e302d0b4116c054f36b2eb6506e926ce676
Author: Stefan Kangas <stefan@marxist.se>
Commit: Victor Ren <victorhge@gmail.com>

    Fix some byte-compiler warnings in Emacs 28
---
 iedit-lib.el | 14 +++++++++-----
 iedit.el     | 10 +++++++---
 2 files changed, 16 insertions(+), 8 deletions(-)

diff --git a/iedit-lib.el b/iedit-lib.el
index bd4b472ea8..6857409dcd 100644
--- a/iedit-lib.el
+++ b/iedit-lib.el
@@ -3,7 +3,7 @@
 
 ;; Copyright (C) 2010 - 2019, 2020, 2021 Victor Ren
 
-;; Time-stamp: <2021-12-28 12:46:19 Victor Ren>
+;; Time-stamp: <2022-01-01 00:43:44 skangas>
 ;; Author: Victor Ren <victorhge@gmail.com>
 ;; Keywords: occurrence region simultaneous rectangle refactoring
 ;; Version: 0.9.9.9
@@ -138,7 +138,8 @@ Either nil, t, or 'open.  'open means the same as t except 
that
 opens hidden overlays. ")
 
 (defvar iedit-lib-skip-invisible-count 0
-  "This is buffer local variable which is the number of skipped invisible 
occurrence. ")
+  "This is buffer local variable which is the number of skipped invisible
+occurrence. ")
 
 (defvar iedit-lib-skip-filtered-count 0
   "This is buffer local variable which is the number of filtered occurrence. ")
@@ -165,7 +166,8 @@ that is going to be changed.")
   "This is buffer local variable which is the point before modification.")
 
 (defvar iedit-buffering-overlay nil
-  "This is buffer local variable which is the current overlay before starting 
recording kmacro.")
+  "This is buffer local variable which is the current overlay before starting
+recording kmacro.")
 
 (defvar iedit-start-kmacro-offset nil
   "This is buffer local variable which is the offset from the
@@ -1005,7 +1007,8 @@ The relative position of the current occurrence is 
remembered."
   (message "Start recording keyboard input..."))
 
 (defun iedit-end-and-call-kmacro (arg &optional no-repeat)
-  "Call last keyboard macro, ending it first if currently being defined, apply 
it on all the occurrences.
+  "Call last keyboard macro, ending it first if currently being defined, apply
+it on all the occurrences.
 
 If iedit is buffering, call it only once.
 
@@ -1222,7 +1225,8 @@ Return nil if occurrence string is empty string."
     (- (overlay-end ov) (overlay-start ov))))
 
 (defun iedit-find-overlay (beg end property &optional exclusive)
-  "Return a overlay with property in region, or out of the region if EXCLUSIVE 
is not nil."
+  "Return a overlay with property in region, or out of the region if EXCLUSIVE 
is
+not nil."
   (if exclusive
       (or (iedit-find-overlay-in-region (point-min) beg property)
           (iedit-find-overlay-in-region end (point-max) property))
diff --git a/iedit.el b/iedit.el
index 6ac2b3713a..4846a60099 100755
--- a/iedit.el
+++ b/iedit.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2010 - 2019, 2020, 2021 Victor Ren
 
-;; Time-stamp: <2021-12-23 18:27:46 Victor Ren>
+;; Time-stamp: <2022-01-01 00:44:47 skangas>
 ;; Author: Victor Ren <victorhge@gmail.com>
 ;; Keywords: occurrence region simultaneous refactoring
 ;; Version: 0.9.9.9
@@ -184,8 +184,12 @@ use this variable:
                         (if (memq prefix-char '(?$ ?% ?@ ?*))
                             (progn
                               (setq iedit-occurrence-type-local 'regexp)
-                              (concat (regexp-quote 
(buffer-substring-no-properties (1- (car bound)) (cdr bound))) \"\\\\_>\"))
-                          (buffer-substring-no-properties (car bound) (cdr 
bound))))))))
+                              (concat (regexp-quote
+                                       (buffer-substring-no-properties
+                                        (1- (car bound)) (cdr bound)))
+                                       \"\\\\_>\"))
+                          (buffer-substring-no-properties (car bound)
+                                                          (cdr bound))))))))
 '$%@*' will be included in the occurrences in perl mode.")
 
 (defcustom iedit-mode-line



reply via email to

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