(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))
(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))
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
;; 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)
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."