]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/tramp.el (tramp-parse-group): Rename third arg to SKIP-CHARS.
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 7 Apr 2019 08:10:30 +0000 (10:10 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 7 Apr 2019 08:10:30 +0000 (10:10 +0200)
(tramp-parse-sconfig-group): Fix thinko.

lisp/net/tramp.el

index 0fc2d33d22203ee68c20a8557f3561449252fb57..32963ac54322c38de1d4198769a1b87a68a955d5 100644 (file)
@@ -2801,14 +2801,14 @@ for all methods.  Resulting data are derived from default settings."
         :port method :require '(:port) :max most-positive-fixnum))))
 
 ;; Generic function.
-(defun tramp-parse-group (regexp match-level skip-regexp)
+(defun tramp-parse-group (regexp match-level skip-chars)
    "Return a (user host) tuple allowed to access.
 User is always nil."
    (let (result)
      (when (re-search-forward regexp (point-at-eol) t)
        (setq result (list nil (match-string match-level))))
      (or
-      (> (skip-chars-forward skip-regexp) 0)
+      (> (skip-chars-forward skip-chars) 0)
       (forward-line 1))
      result))
 
@@ -2864,7 +2864,7 @@ User is always nil."
    (tramp-parse-group
     (concat "\\(?:^[ \t]*Host\\)" "\\|" "\\(?:^.+\\)"
            "\\|" "\\(" tramp-host-regexp "\\)")
-    1 "[ \t]+"))
+    1 " \t"))
 
 ;; Generic function.
 (defun tramp-parse-shostkeys-sknownhosts (dirname regexp)