From 62dec3975644db19f24d4889a738c02d34fd4837 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 2 Mar 2022 15:42:53 -0800 Subject: [PATCH] [oni-vc] Fix function reference --- oni-vc.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oni-vc.el b/oni-vc.el index f2e7379..56e5c0e 100644 --- a/oni-vc.el +++ b/oni-vc.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2022.0224.145953 +;; Version: 2022.0302.154243 ;; Package-Requires: (vc-p4) ;; This program is free software; you can redistribute it and/or modify @@ -41,7 +41,7 @@ (defun oni-vc-enable-auto-checkout-for-perforce () "Set up a ‘pre-command-hook’ to automatically check out a file if necessary." (when (equal (vc-backend (buffer-file-name)) 'P4) - (add-hook 'pre-command-hook 'oni-vc-pre-edit-function nil t))) + (add-hook 'pre-command-hook #'oni-vc-maybe-checkout nil t))) ;;;###autoload (add-hook 'find-file-hook 'oni-vc-enable-auto-checkout-for-perforce)