]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some recently introduced byte-compiler warnings
authorStefan Kangas <stefankangas@gmail.com>
Wed, 17 Aug 2022 10:48:02 +0000 (12:48 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Wed, 17 Aug 2022 10:52:56 +0000 (12:52 +0200)
* lisp/emulation/viper-util.el (viper-key-to-character):
* lisp/vc/vc-svn.el (vc-svn-dir-extra-headers): Fix warnings.
* lisp/net/eudc-export.el (eudc-batch-export-records-to-bbdb):
Fix buglet.

lisp/emulation/viper-util.el
lisp/net/eudc-export.el
lisp/vc/vc-svn.el

index 25c55acf96c55dcec797887020d9481706362bd3..46dbd7f24d50ae5c1fee0aad6f259fa0970bd8cf 100644 (file)
@@ -1020,7 +1020,6 @@ Otherwise return the normal value."
         (string-to-char (symbol-name key)))
        ((and (listp key)
              (eq (car key) 'control)
-             (symbol-name (nth 1 key))
              (= 1 (length (symbol-name (nth 1 key)))))
         (read (format "?\\C-%s" (symbol-name (nth 1 key)))))
        (t key)))
index 3f7d9c0060840f47c31050f4ca91627474b5ed60..2f841336e0b250d6c10183904768268d367fe178 100644 (file)
@@ -210,7 +210,7 @@ LOCATION is used as the phone location for BBDB."
     (while (eudc-move-to-next-record)
       (and (overlays-at (point))
           (setq record (overlay-get (car (overlays-at (point))) 'eudc-record))
-          (1+ nbrec)
+           (setq nbrec (1+ nbrec))
           (eudc-create-bbdb-record record t)))
     (message "%d records imported into BBDB" nbrec)))
 
index 270877041aa9a2880ff395c1ddfa2aacbb565a4f..08b53a7169f815f3a3b6bf21474a74ce8103f127 100644 (file)
@@ -224,12 +224,10 @@ RESULT is a list of conses (FILE . STATE) for directory DIR."
   (let (process-file-side-effects)
     (vc-svn-command "*vc*" 0 nil "info"))
   (let ((repo
-        (save-excursion
-          (and (progn
-                 (set-buffer "*vc*")
-                 (goto-char (point-min))
-                 (re-search-forward "Repository Root: *\\(.*\\)" nil t))
-               (match-string 1)))))
+         (with-current-buffer "*vc*"
+           (goto-char (point-min))
+           (when (re-search-forward "Repository Root: *\\(.*\\)" nil t)
+             (match-string 1)))))
     (concat
      (cond (repo
            (concat