Variable: log-view-file-re

log-view-file-re is a variable defined in log-view.el.gz.

Value

"^\\(?:Working file: \\(?1:.+\\)\\|\\(?:SCCS/s\\.\\|Changes to \\)\\(?1:.+\\):\\)\n"

Documentation

Regexp matching the text identifying the file.

The match group number 1 should match the file name itself.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/log-view.el.gz
(defvar log-view-file-re
  (concat "^\\(?:Working file: \\(?1:.+\\)"                ;RCS and CVS.
          ;; Subversion has no such thing??
          "\\|\\(?:SCCS/s\\.\\|Changes to \\)\\(?1:.+\\):" ;SCCS and Darcs.
	  "\\)\n")                    ;Include the \n for font-lock reasons.
  "Regexp matching the text identifying the file.
The match group number 1 should match the file name itself.")