Function: change-log-get-method-definition-1
change-log-get-method-definition-1 is a byte-compiled function defined
in add-log.el.gz.
Signature
(change-log-get-method-definition-1 END)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/add-log.el.gz
;; Subroutine used within change-log-get-method-definition.
;; Add the last match in the buffer to the end of `md',
;; followed by the string END; move to the end of that match.
(defun change-log-get-method-definition-1 (end)
(setq change-log-get-method-definition-md
(concat change-log-get-method-definition-md
(match-string 1)
end))
(goto-char (match-end 0)))