diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-03-30 02:14:11 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-03-30 02:14:11 +0000 |
| commit | 61446fe76ff516eb13ee79cdc3bd4966659fa100 (patch) | |
| tree | dafb9b64993dd22ac083dff3a345de1ed344b5f4 /lisp | |
| parent | 2fc9d9f46216e0aeb6a2c0a07c1ad740e4f2b31c (diff) | |
| download | emacs-61446fe76ff516eb13ee79cdc3bd4966659fa100.tar.gz | |
(vc-checkin): Undo previous change.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/vc.el | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index b6a2731b522..7e7e6412139 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -605,15 +605,9 @@ The optional argument REV may be a string specifying the new version level permissions zeroed, or deleted (according to the value of `vc-keep-workfiles'). COMMENT is a comment string; if omitted, a buffer is popped up to accept a comment." - ;; If we will pop up a buffer to edit the comment, and we are in a buffer - ;; on the file being checked in, insert a default header into the comment - ;; buffer based on the defun point is currently in. - (let ((defun (and (null comment) (string= file buffer-file-name) - (add-log-current-defun)))) - (setq vc-log-after-operation-hook 'vc-checkin-hook) - (prog1 (vc-start-entry file rev comment "Enter a change comment." - 'vc-backend-checkin) - (if defun (insert "(" defun "): "))))) + (setq vc-log-after-operation-hook 'vc-checkin-hook) + (vc-start-entry file rev comment + "Enter a change comment." 'vc-backend-checkin)) ;;; Here is a checkin hook that may prove useful to sites using the ;;; ChangeLog facility supported by Emacs. |
