]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove unused vars in cl-extra.el and tramp.el.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 19 Mar 2017 02:32:23 +0000 (22:32 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 19 Mar 2017 02:32:23 +0000 (22:32 -0400)
* lisp/emacs-lisp/cl-extra.el (cl--print-table): Remove unused vars.

* lisp/net/tramp.el (tramp-dissect-file-name): Remove unused `match'.
(outline-regexp, ls-lisp-use-insert-directory-program): Declare.
(tramp-find-foreign-file-name-handler): Mark unused arg, remove unused `v`.

lisp/emacs-lisp/cl-extra.el
lisp/net/tramp.el

index 8b3d6eecf5cd5e90760732dd201836cfc0dee77e..021ef232749acc93bb22b045ece2600e0fed9ec8 100644 (file)
@@ -877,16 +877,14 @@ including `cl-block' and `cl-eval-when'."
           (if (> newwidth curwidth)
               (setf (aref cols i) newwidth)))))
     (let ((formats '())
-          (tmp-head header)
           (col 0))
       (dotimes (i (length cols))
-        (let ((head (pop tmp-head)))
-          (push (concat (propertize "  "
-                                    'display
-                                    `(space :align-to ,(+ col col-space)))
-                        "%s")
-                formats)
-        (cl-incf col (+ col-space (aref cols i)))))
+        (push (concat (propertize "    "
+                                  'display
+                                  `(space :align-to ,(+ col col-space)))
+                      "%s")
+              formats)
+        (cl-incf col (+ col-space (aref cols i))))
       (let ((format (mapconcat #'identity (nreverse formats) "")))
         (insert (apply #'format format
                        (mapcar (lambda (str) (propertize str 'face 'italic))
index 969092f517f0150f65df599e55ce421fd1495e7b..fdd4661decb2da86ece3aaf6d802f749c54908ae 100644 (file)
@@ -1237,7 +1237,8 @@ values."
   (save-match-data
     (unless (tramp-tramp-file-p name)
       (tramp-compat-user-error nil "Not a Tramp file name: \"%s\"" name))
-    (let ((match (string-match (nth 0 tramp-file-name-structure) name)))
+    (if (not (string-match (nth 0 tramp-file-name-structure) name))
+        (error "`tramp-file-name-structure' didn't match!")
       (let ((method    (match-string (nth 1 tramp-file-name-structure) name))
            (user      (match-string (nth 2 tramp-file-name-structure) name))
            (host      (match-string (nth 3 tramp-file-name-structure) name))
@@ -1373,6 +1374,8 @@ Point must be at the beginning of a header line.
 The outline level is equal to the verbosity of the Tramp message."
   (1+ (string-to-number (match-string 1))))
 
+(defvar outline-regexp)
+
 (defun tramp-get-debug-buffer (vec)
   "Get the debug buffer for VEC."
   (with-current-buffer
@@ -1969,11 +1972,10 @@ ARGS are the arguments OPERATION has been called with."
    ;; Unknown file primitive.
    (t (error "unknown file I/O primitive: %s" operation))))
 
-(defun tramp-find-foreign-file-name-handler (filename &optional operation)
+(defun tramp-find-foreign-file-name-handler (filename &optional _operation)
   "Return foreign file name handler if exists."
   (when (tramp-tramp-file-p filename)
-    (let ((v (tramp-dissect-file-name filename t))
-         (handler tramp-foreign-file-name-handler-alist)
+    (let ((handler tramp-foreign-file-name-handler-alist)
          elt res)
       (while handler
        (setq elt (car handler)
@@ -2953,6 +2955,8 @@ User is always nil."
             backup-directory-alist)))
       (tramp-run-real-handler 'find-backup-file-name (list filename)))))
 
+(defvar ls-lisp-use-insert-directory-program)
+
 (defun tramp-handle-insert-directory
   (filename switches &optional wildcard full-directory-p)
   "Like `insert-directory' for Tramp files."