Function: vc-svn-check-headers

vc-svn-check-headers is a byte-compiled function defined in vc-svn.el.gz.

Signature

(vc-svn-check-headers)

Documentation

Check if the current file has any headers in it.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
;;;
;;; Miscellaneous
;;;

;; Subversion makes backups for us, so don't bother.
;; (defun vc-svn-make-version-backups-p (file)
;;   "Return non-nil if version backups should be made for FILE."
;;  nil)

(defun vc-svn-check-headers ()
  "Check if the current file has any headers in it."
  (save-excursion
    (goto-char (point-min))
    (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))