diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-06-09 13:27:56 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-06-09 13:27:56 +0200 |
commit | f64ab8fb4c5fbf995d44f4c7397ce4134e2ea3a9 (patch) | |
tree | 86b7023914cd5bb7a906e147ae72ee388b7b71cc | |
parent | 883ffa8ce9ee9e15f8c2904c7f30809883cab1a8 (diff) | |
download | emacs-f64ab8fb4c5fbf995d44f4c7397ce4134e2ea3a9.tar.gz emacs-f64ab8fb4c5fbf995d44f4c7397ce4134e2ea3a9.tar.bz2 emacs-f64ab8fb4c5fbf995d44f4c7397ce4134e2ea3a9.zip |
* vc-mtn.el (log-edit-extract-headers): Declare function.
-rw-r--r-- | lisp/ChangeLog | 2 | ||||
-rw-r--r-- | lisp/vc-mtn.el | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 24f01753b48..16791f19c87 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-06-09 Juanma Barranquero <lekktu@gmail.com> + * vc-mtn.el (log-edit-extract-headers): Declare function. + * vc-hg.el (log-edit-extract-headers): Remove duplicate declaration. * net/notifications.el (dbus-register-signal): Declare function. diff --git a/lisp/vc-mtn.el b/lisp/vc-mtn.el index 500c00cefe4..8866ce46f83 100644 --- a/lisp/vc-mtn.el +++ b/lisp/vc-mtn.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> -;; Keywords: +;; Keywords: ;; This file is part of GNU Emacs. @@ -22,7 +22,7 @@ ;;; Commentary: -;; +;; ;;; TODO: @@ -172,6 +172,8 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." (defun vc-mtn-responsible-p (file) (vc-mtn-root file)) (defun vc-mtn-could-register (file) (vc-mtn-root file)) +(declare-function log-edit-extract-headers "log-edit" (headers string)) + (defun vc-mtn-checkin (files rev comment &optional extra-args-ignored) (apply 'vc-mtn-command nil 0 files (nconc (list "commit" "-m") |