comparison lisp/vc.el @ 103434:2527d8d9a450

(vc-default-revision-granularity): Remove to let the normal error handling kick in (bug#3570).
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 15 Jun 2009 20:55:53 +0000
parents 8d8a82b45ba7
children af4ee0cb7fb7
comparison
equal deleted inserted replaced
103433:be5fe3b3c1c2 103434:2527d8d9a450
2245 ;; the default-directory. 2245 ;; the default-directory.
2246 nil))) 2246 nil)))
2247 (vc-call-backend (vc-responsible-backend default-directory) 2247 (vc-call-backend (vc-responsible-backend default-directory)
2248 'update-changelog args)) 2248 'update-changelog args))
2249 2249
2250 ;;; The default back end. Assumes RCS-like revision numbering.
2251
2252 (defun vc-default-revision-granularity ()
2253 (error "Your backend will not work with this version of VC mode."))
2254
2255 ;; functions that operate on RCS revision numbers. This code should 2250 ;; functions that operate on RCS revision numbers. This code should
2256 ;; also be moved into the backends. It stays for now, however, since 2251 ;; also be moved into the backends. It stays for now, however, since
2257 ;; it is used in code below. 2252 ;; it is used in code below.
2258 ;;;###autoload 2253 ;;;###autoload
2259 (defun vc-trunk-p (rev) 2254 (defun vc-trunk-p (rev)