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

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

[elpa] master fb1fbc0 39/40: Fixed compilation warnings.


From: Alexey Veretennikov
Subject: [elpa] master fb1fbc0 39/40: Fixed compilation warnings.
Date: Fri, 29 Jan 2016 23:29:55 +0000

branch: master
commit fb1fbc0ff5da7a8b117542ab8083d29cd79e12b2
Author: Alexey Veretennikov <address@hidden>
Commit: Alexey Veretennikov <address@hidden>

    Fixed compilation warnings.
---
 loccur.el |   24 ++++++++++--------------
 1 files changed, 10 insertions(+), 14 deletions(-)

diff --git a/loccur.el b/loccur.el
index 6249d44..2921ba0 100644
--- a/loccur.el
+++ b/loccur.el
@@ -154,9 +154,8 @@ REGEX is regexp to search"
   (let ((loccur-highlight-matching-regexp nil))
     (loccur regex)))
 
-(defun loccur-toggle-highlight (&optional arg)
-  "Toggle the highlighting of the match.
-Optional argument ARG if t turn highlight on, off otherwise."
+(defun loccur-toggle-highlight ()
+  "Toggle the highlighting of the match."
   (interactive)
   (setq loccur-highlight-matching-regexp (not 
loccur-highlight-matching-regexp))
   (when loccur-mode
@@ -272,13 +271,13 @@ REGEX is an argument to `loccur'."
   (let ((prev-end (point-min))
         (overlays (list)))
     (when buffer-matches
-      (mapcar (lambda (line)
-                (let ((beginning (car line)))
-                  (unless ( = (- beginning prev-end) 1)
-                    (let ((ovl-end  (1- beginning)))
-                      (push (list prev-end ovl-end) overlays)))
-                  (setq prev-end (nth 3 line))))
-              buffer-matches)
+      (mapc (lambda (line)
+              (let ((beginning (car line)))
+                (unless ( = (- beginning prev-end) 1)
+                  (let ((ovl-end  (1- beginning)))
+                    (push (list prev-end ovl-end) overlays)))
+                (setq prev-end (nth 3 line))))
+            buffer-matches)
       (push (list (1+ prev-end) (point-max)) overlays)
       (setq overlays (nreverse overlays)))))
 
@@ -293,13 +292,10 @@ containing match"
     ;; Go to the beginnig of buffer
     (goto-char (point-min))
     ;; Set initial values for variables
-    (let ((matches 0)
-          (curpoint nil)
-          (endpoint nil)
+    (let ((endpoint nil)
           (lines (list)))
       ;; Search loop
       (while (not (eobp))
-        (setq curpoint (point))
         ;; if something found
         (when (setq endpoint (re-search-forward regex nil t))
           (save-excursion



reply via email to

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