diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2009-07-23 05:41:24 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2009-07-23 05:41:24 +0000 |
commit | 10b5dcad4638932acad65712ef90e295367c5073 (patch) | |
tree | 8b07c14270ceed18debee4855eab3f91dc738cd5 /lisp | |
parent | d6a62b0d7a23e494dc8adf06ca34d5b2cfe9c319 (diff) | |
download | emacs-10b5dcad4638932acad65712ef90e295367c5073.tar.gz emacs-10b5dcad4638932acad65712ef90e295367c5073.tar.bz2 emacs-10b5dcad4638932acad65712ef90e295367c5073.zip |
(vc-dir-move-to-goal-column): Declare.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 1 | ||||
-rw-r--r-- | lisp/vc.el | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 70b899c2f51..accbe7d1eb9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -2,6 +2,7 @@ * vc.el (vc-print-log-internal): New function, split out from ... (vc-print-log): ... here. + (vc-dir-move-to-goal-column): Declare. * vc-git.el (vc-git-add-signoff): New variable. (vc-git-checkin): Use it. diff --git a/lisp/vc.el b/lisp/vc.el index 590787e019c..1f3ea9ddcaf 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1184,6 +1184,8 @@ merge in the changes into your working copy." nil t))))) (vc-call-backend backend 'create-repo)) +(declare-function vc-dir-move-to-goal-column "vc-dir" ()) + ;;;###autoload (defun vc-register (&optional set-revision vc-fileset comment) "Register into a version control system. |