Commit Diff


commit - 67e0b4d2d00aff499b4d4b46d4f023e7c0c95d58
commit + 7726b6c92c1c3f353d2fa12fc8c2eff2f53fd156
blob - 01f2e5142f2221421705a53decbde7095bcad7e0
blob + 1da78878697b051a2690304b73c45ec8a9a0b89c
--- vc-got.el
+++ vc-got.el
@@ -18,7 +18,7 @@
 ;; You should have received a copy of the GNU General Public License
 ;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
 
-;;; Commentary
+;;; Commentary:
 
 ;; Backend implementation status
 ;;
@@ -532,7 +532,8 @@ FILES is nil, consider all the files in DIR."
 ;; state-changing functions
 
 (defun vc-got-create-repo (_backend)
-  (error "vc got: create-repo not implemented"))
+  "Create an empty repository in the current directory."
+  (error "[vc-got] create-repo not implemented"))
 
 (defun vc-got-register (files &optional _comment)
   "Register FILES, passing `vc-register-switches' to the backend command."
@@ -569,7 +570,7 @@ FILES is nil, consider all the files in DIR."
 (defun vc-got-checkout (_file &optional _rev)
   "Checkout revision REV of FILE.
 If REV is t, checkout from the head."
-  (error "vc got: checkout not implemented"))
+  (error "[vc-got] checkout not implemented"))
 
 (defun vc-got-revert (file &optional _content-done)
   "Revert FILE back to working revision."