]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove superfluous check from vc-hooks.el
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 12 Aug 2023 13:17:32 +0000 (15:17 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 12 Aug 2023 13:17:32 +0000 (15:17 +0200)
* lisp/vc/vc-hooks.el (vc-registered): Don't check whether
`file-name-handler-alist' is bound, the check is superfluous.

lisp/vc/vc-hooks.el

index 00a7659209e11c58cf8c49fb7645821021e2142c..e75165ea2e9feda2ddba0914dccbd09de9aeaef0 100644 (file)
@@ -321,8 +321,7 @@ backend is tried first."
      ((and (file-name-directory file)
            (string-match vc-ignore-dir-regexp (file-name-directory file)))
       nil)
-     ((and (boundp 'file-name-handler-alist)
-          (setq handler (find-file-name-handler file 'vc-registered)))
+     ((setq handler (find-file-name-handler file 'vc-registered))
       ;; handler should set vc-backend and return t if registered
       (funcall handler 'vc-registered file))
      (t