Mercurial > emacs
annotate lisp/vc-hg.el @ 108794:0aab456fe7bd
* eshell.texi (Built-ins): Describe, how to disable a built-in command
by an alias.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Wed, 26 May 2010 12:10:05 +0200 |
parents | 973b5bc5fcfe |
children | c05344a913c8 |
rev | line source |
---|---|
78075 | 1 ;;; vc-hg.el --- VC backend for the mercurial version control system |
2 | |
106815 | 3 ;; Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
78075 | 4 |
5 ;; Author: Ivan Kanis | |
6 ;; Keywords: tools | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
78075 | 11 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
13 ;; (at your option) any later version. |
78075 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
78075 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; This is a mercurial version control backend | |
26 | |
27 ;;; Thanks: | |
28 | |
29 ;;; Bugs: | |
30 | |
31 ;;; Installation: | |
32 | |
33 ;;; Todo: | |
34 | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
35 ;; 1) Implement the rest of the vc interface. See the comment at the |
78075 | 36 ;; beginning of vc.el. The current status is: |
37 | |
38 ;; FUNCTION NAME STATUS | |
81982
d4b8336cd8f5
* vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81964
diff
changeset
|
39 ;; BACKEND PROPERTIES |
d4b8336cd8f5
* vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81964
diff
changeset
|
40 ;; * revision-granularity OK |
d4b8336cd8f5
* vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81964
diff
changeset
|
41 ;; STATE-QUERYING FUNCTIONS |
78075 | 42 ;; * registered (file) OK |
43 ;; * state (file) OK | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
44 ;; - state-heuristic (file) NOT NEEDED |
98492
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
45 ;; - dir-status (dir update-function) OK |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
46 ;; - dir-status-files (dir files ds uf) OK |
101200
bbf505632d29
(vc-hg-diff): Pass relative file names. (Bug#1903)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
47 ;; - dir-extra-headers (dir) OK |
bbf505632d29
(vc-hg-diff): Pass relative file names. (Bug#1903)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
48 ;; - dir-printer (fileinfo) OK |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
49 ;; * working-revision (file) OK |
78075 | 50 ;; - latest-on-branch-p (file) ?? |
94563
a0bb8ca25a33
Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94542
diff
changeset
|
51 ;; * checkout-model (files) OK |
78167
252b7f091c04
(vc-hg-workfile-unchanged-p): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78166
diff
changeset
|
52 ;; - workfile-unchanged-p (file) OK |
78075 | 53 ;; - mode-line-string (file) NOT NEEDED |
54 ;; STATE-CHANGING FUNCTIONS | |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
55 ;; * register (files &optional rev comment) OK |
81982
d4b8336cd8f5
* vc-hg.el (vc-hg-print-log): Deal with multiple file arguments.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81964
diff
changeset
|
56 ;; * create-repo () OK |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
57 ;; - init-revision () NOT NEEDED |
78075 | 58 ;; - responsible-p (file) OK |
59 ;; - could-register (file) OK | |
60 ;; - receive-file (file rev) ?? PROBABLY NOT NEEDED | |
61 ;; - unregister (file) COMMENTED OUT, MAY BE INCORRECT | |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
62 ;; * checkin (files rev comment) OK |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
63 ;; * find-revision (file rev buffer) OK |
78148
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
64 ;; * checkout (file &optional editable rev) OK |
78075 | 65 ;; * revert (file &optional contents-done) OK |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
66 ;; - rollback (files) ?? PROBABLY NOT NEEDED |
78075 | 67 ;; - merge (file rev1 rev2) NEEDED |
68 ;; - merge-news (file) NEEDED | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
69 ;; - steal-lock (file &optional revision) NOT NEEDED |
78075 | 70 ;; HISTORY FUNCTIONS |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
71 ;; * print-log (files buffer &optional shortlog start-revision limit) OK |
78075 | 72 ;; - log-view-mode () OK |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
73 ;; - show-log-entry (revision) NOT NEEDED, DEFAULT IS GOOD |
78075 | 74 ;; - comment-history (file) NOT NEEDED |
75 ;; - update-changelog (files) NOT NEEDED | |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
76 ;; * diff (files &optional rev1 rev2 buffer) OK |
85462
43a9834cf1a6
* vc-bzr.el (vc-bzr-diff-tree):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85460
diff
changeset
|
77 ;; - revision-completion-table (files) OK? |
78075 | 78 ;; - annotate-command (file buf &optional rev) OK |
79 ;; - annotate-time () OK | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
80 ;; - annotate-current-time () NOT NEEDED |
78075 | 81 ;; - annotate-extract-revision-at-line () OK |
95020
4da572dc4992
Snapshot primitives globally renamed to refer to tags, documentation updated.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94853
diff
changeset
|
82 ;; TAG SYSTEM |
101200
bbf505632d29
(vc-hg-diff): Pass relative file names. (Bug#1903)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
83 ;; - create-tag (dir name branchp) NEEDED |
bbf505632d29
(vc-hg-diff): Pass relative file names. (Bug#1903)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
84 ;; - retrieve-tag (dir name update) NEEDED |
78075 | 85 ;; MISCELLANEOUS |
86 ;; - make-version-backups-p (file) ?? | |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
87 ;; - repository-hostname (dirname) ?? |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
88 ;; - previous-revision (file rev) OK |
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
89 ;; - next-revision (file rev) OK |
78075 | 90 ;; - check-headers () ?? |
91 ;; - clear-headers () ?? | |
92 ;; - delete-file (file) TEST IT | |
93 ;; - rename-file (old new) OK | |
94 ;; - find-file-hook () PROBABLY NOT NEEDED | |
95 | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
96 ;; 2) Implement Stefan Monnier's advice: |
78075 | 97 ;; vc-hg-registered and vc-hg-state |
98 ;; Both of those functions should be super extra careful to fail gracefully in | |
99 ;; unexpected circumstances. The reason this is important is that any error | |
100 ;; there will prevent the user from even looking at the file :-( | |
101 ;; Ideally, just like in vc-arch and vc-cvs, checking that the file is under | |
102 ;; mercurial's control and extracting the current revision should be done | |
103 ;; without even using `hg' (this way even if you don't have `hg' installed, | |
104 ;; Emacs is able to tell you this file is under mercurial's control). | |
105 | |
106 ;;; History: | |
107 ;; | |
108 | |
109 ;;; Code: | |
110 | |
111 (eval-when-compile | |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
112 (require 'cl) |
96260 | 113 (require 'vc) |
114 (require 'vc-dir)) | |
78075 | 115 |
116 ;;; Customization options | |
117 | |
118 (defcustom vc-hg-global-switches nil | |
100171 | 119 "Global switches to pass to any Hg command." |
78075 | 120 :type '(choice (const :tag "None" nil) |
121 (string :tag "Argument String") | |
100180
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
122 (repeat :tag "Argument List" :value ("") string)) |
78075 | 123 :version "22.2" |
124 :group 'vc) | |
125 | |
100180
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
126 (defcustom vc-hg-diff-switches t ; Hg doesn't support common args like -u |
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
127 "String or list of strings specifying switches for Hg diff under VC. |
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
128 If nil, use the value of `vc-diff-switches'. If t, use no switches." |
99736
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
129 :type '(choice (const :tag "Unspecified" nil) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
130 (const :tag "None" t) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
131 (string :tag "Argument String") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
132 (repeat :tag "Argument List" :value ("") string)) |
99736
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
133 :version "23.1" |
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
134 :group 'vc) |
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
135 |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
136 |
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
137 ;;; Properties of the backend |
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
138 |
94563
a0bb8ca25a33
Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94542
diff
changeset
|
139 (defun vc-hg-revision-granularity () 'repository) |
a0bb8ca25a33
Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94542
diff
changeset
|
140 (defun vc-hg-checkout-model (files) 'implicit) |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
141 |
78075 | 142 ;;; State querying functions |
143 | |
144 ;;;###autoload (defun vc-hg-registered (file) | |
145 ;;;###autoload "Return non-nil if FILE is registered with hg." | |
146 ;;;###autoload (if (vc-find-root file ".hg") ; short cut | |
147 ;;;###autoload (progn | |
148 ;;;###autoload (load "vc-hg") | |
149 ;;;###autoload (vc-hg-registered file)))) | |
150 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
151 ;; Modeled after the similar function in vc-bzr.el |
78075 | 152 (defun vc-hg-registered (file) |
153 "Return non-nil if FILE is registered with hg." | |
78166
516805bc7988
(vc-hg-registered): Replace if with when.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78148
diff
changeset
|
154 (when (vc-hg-root file) ; short cut |
87455
06f57a4af48c
(vc-hg-registered): Return the false when vc-hg-state
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87450
diff
changeset
|
155 (let ((state (vc-hg-state file))) ; expensive |
87865
1a3c90d4d8fa
* vc-hg.el (vc-hg-registered): Make it work for non-existent
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87844
diff
changeset
|
156 (and state (not (memq state '(ignored unregistered))))))) |
78075 | 157 |
158 (defun vc-hg-state (file) | |
159 "Hg-specific version of `vc-state'." | |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
160 (let* |
78075 | 161 ((status nil) |
105785
882add770597
(vc-hg-state, vc-hg-working-revision): Use process-file so
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105670
diff
changeset
|
162 (default-directory (file-name-directory file)) |
78075 | 163 (out |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
164 (with-output-to-string |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
165 (with-current-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
166 standard-output |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
167 (setq status |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
168 (condition-case nil |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
169 ;; Ignore all errors. |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
170 (let ((process-environment |
108322
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
171 ;; Avoid localization of messages so we |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
172 ;; can parse the output. |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
173 (append (list "TERM=dumb" "LANGUAGE=C" "HGRCPATH=") |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
174 process-environment))) |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
175 (process-file |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
176 "hg" nil t nil |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
177 "status" "-A" (file-relative-name file))) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
178 ;; Some problem happened. E.g. We can't find an `hg' |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
179 ;; executable. |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
180 (error nil))))))) |
78075 | 181 (when (eq 0 status) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
182 (when (null (string-match ".*: No such file or directory$" out)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
183 (let ((state (aref out 0))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
184 (cond |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
185 ((eq state ?=) 'up-to-date) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
186 ((eq state ?A) 'added) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
187 ((eq state ?M) 'edited) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
188 ((eq state ?I) 'ignored) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
189 ((eq state ?R) 'removed) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
190 ((eq state ?!) 'missing) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
191 ((eq state ??) 'unregistered) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
192 ((eq state ?C) 'up-to-date) ;; Older mercurials use this |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
193 (t 'up-to-date))))))) |
78075 | 194 |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
195 (defun vc-hg-working-revision (file) |
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
196 "Hg-specific version of `vc-working-revision'." |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
197 (let* |
78075 | 198 ((status nil) |
105785
882add770597
(vc-hg-state, vc-hg-working-revision): Use process-file so
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105670
diff
changeset
|
199 (default-directory (file-name-directory file)) |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
200 ;; Avoid localization of messages so we can parse the output. |
108322
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
201 (avoid-local-env (append (list "TERM=dumb" "LANGUAGE=C" "HGRCPATH=") |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
202 process-environment)) |
78075 | 203 (out |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
204 (with-output-to-string |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
205 (with-current-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
206 standard-output |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
207 (setq status |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
208 (condition-case nil |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
209 (let ((process-environment avoid-local-env)) |
106576
ad87b48da2b0
(vc-hg-working-revision): Make sure the command is executed in a
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106575
diff
changeset
|
210 ;; Ignore all errors. |
ad87b48da2b0
(vc-hg-working-revision): Make sure the command is executed in a
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106575
diff
changeset
|
211 (process-file |
ad87b48da2b0
(vc-hg-working-revision): Make sure the command is executed in a
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106575
diff
changeset
|
212 "hg" nil t nil |
108322
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
213 "parents" "--template" "{rev}" (file-relative-name file))) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
214 ;; Some problem happened. E.g. We can't find an `hg' |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
215 ;; executable. |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
216 (error nil))))))) |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
217 (if (eq 0 status) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
218 out |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
219 ;; Check if the file is in the 'added state, the above hg |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
220 ;; command does not distinguish between 'added and 'unregistered. |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
221 (setq status |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
222 (condition-case nil |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
223 (let ((process-environment avoid-local-env)) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
224 (process-file |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
225 "hg" nil nil nil |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
226 ;; We use "log" here, if there's a faster command |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
227 ;; that returns true for an 'added file and false |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
228 ;; for an 'unregistered one, we could use that. |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
229 "log" "-l1" (file-relative-name file))) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
230 ;; Some problem happened. E.g. We can't find an `hg' |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
231 ;; executable. |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
232 (error nil))) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
233 (when (eq 0 status) "0")))) |
78075 | 234 |
235 ;;; History functions | |
236 | |
103403
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
237 (defcustom vc-hg-log-switches nil |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
238 "String or list of strings specifying switches for hg log under VC." |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
239 :type '(choice (const :tag "None" nil) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
240 (string :tag "Argument String") |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
241 (repeat :tag "Argument List" :value ("") string)) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
242 :group 'vc-hg) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
243 |
106575
87010af04b9a
(vc-hg-print-log): Fix argument order.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106472
diff
changeset
|
244 (defun vc-hg-print-log (files buffer &optional shortlog start-revision limit) |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
245 "Get change log associated with FILES." |
78075 | 246 ;; `vc-do-command' creates the buffer, but we need it before running |
247 ;; the command. | |
248 (vc-setup-buffer buffer) | |
249 ;; If the buffer exists from a previous invocation it might be | |
250 ;; read-only. | |
251 (let ((inhibit-read-only t)) | |
95966
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
252 (with-current-buffer |
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
253 buffer |
105010
b3c2589ed19e
* vc.el (top): print-log method now takes an optional SHORTLOG
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103596
diff
changeset
|
254 (apply 'vc-hg-command buffer 0 files "log" |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
255 (nconc |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
256 (when start-revision (list (format "-r%s:" start-revision))) |
106033
2bed02fa3041
* vc.el (vc-log-show-limit): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105785
diff
changeset
|
257 (when limit (list "-l" (format "%s" limit))) |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
258 (when shortlog (list "--style" "compact")) |
106033
2bed02fa3041
* vc.el (vc-log-show-limit): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105785
diff
changeset
|
259 vc-hg-log-switches))))) |
78075 | 260 |
261 (defvar log-view-message-re) | |
262 (defvar log-view-file-re) | |
263 (defvar log-view-font-lock-keywords) | |
95966
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
264 (defvar log-view-per-file-logs) |
78075 | 265 |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78363
diff
changeset
|
266 (define-derived-mode vc-hg-log-view-mode log-view-mode "Hg-Log-View" |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
267 (require 'add-log) ;; we need the add-log faces |
95966
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
268 (set (make-local-variable 'log-view-file-re) "\\`a\\`") |
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
269 (set (make-local-variable 'log-view-per-file-logs) nil) |
78075 | 270 (set (make-local-variable 'log-view-message-re) |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
271 (if (eq vc-log-view-type 'short) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
272 "^\\([0-9]+\\)\\(\\[.*\\]\\)? +\\([0-9a-z]\\{12\\}\\) +\\(\\(?:[0-9]+\\)-\\(?:[0-9]+\\)-\\(?:[0-9]+\\) \\(?:[0-9]+\\):\\(?:[0-9]+\\) \\(?:[-+0-9]+\\)\\) +\\(.*\\)$" |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
273 "^changeset:[ \t]*\\([0-9]+\\):\\(.+\\)")) |
78075 | 274 (set (make-local-variable 'log-view-font-lock-keywords) |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
275 (if (eq vc-log-view-type 'short) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
276 (append `((,log-view-message-re |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
277 (1 'log-view-message-face) |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
278 (2 'highlight nil lax) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
279 (3 'log-view-message-face) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
280 (4 'change-log-date) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
281 (5 'change-log-name)))) |
78075 | 282 (append |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
283 log-view-font-lock-keywords |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
284 '( |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
285 ;; Handle the case: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
286 ;; user: FirstName LastName <foo@bar> |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
287 ("^user:[ \t]+\\([^<(]+?\\)[ \t]*[(<]\\([A-Za-z0-9_.+-]+@[A-Za-z0-9_.-]+\\)[>)]" |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
288 (1 'change-log-name) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
289 (2 'change-log-email)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
290 ;; Handle the cases: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
291 ;; user: foo@bar |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
292 ;; and |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
293 ;; user: foo |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
294 ("^user:[ \t]+\\([A-Za-z0-9_.+-]+\\(?:@[A-Za-z0-9_.-]+\\)?\\)" |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
295 (1 'change-log-email)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
296 ("^date: \\(.+\\)" (1 'change-log-date)) |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
297 ("^tag: +\\([^ ]+\\)$" (1 'highlight)) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
298 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))) |
78075 | 299 |
108009
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
300 (declare-function log-edit-extract-headers "log-edit" (headers string)) |
78075 | 301 |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
302 (defun vc-hg-diff (files &optional oldvers newvers buffer) |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
303 "Get a difference report using hg between two revisions of FILES." |
95966
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
304 (let* ((firstfile (car files)) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
305 (working (and firstfile (vc-working-revision firstfile)))) |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
306 (when (and (equal oldvers working) (not newvers)) |
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
307 (setq oldvers nil)) |
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
308 (when (and (not oldvers) newvers) |
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
309 (setq oldvers working)) |
106103
a3a5df7c686c
(vc-hg-diff): Fix last patch: do not change directory.
Sam Steingold <sds@gnu.org>
parents:
106033
diff
changeset
|
310 (apply #'vc-hg-command (or buffer "*vc-diff*") nil files "diff" |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
311 (append |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
312 (vc-switches 'hg 'diff) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
313 (when oldvers |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
314 (if newvers |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
315 (list "-r" oldvers "-r" newvers) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
316 (list "-r" oldvers))))))) |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
317 |
85460
d36b2b98840f
(vc-hg-revision-completion-table, vc-hg-revision-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
318 (defun vc-hg-revision-table (files) |
d36b2b98840f
(vc-hg-revision-completion-table, vc-hg-revision-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
319 (let ((default-directory (file-name-directory (car files)))) |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
320 (with-temp-buffer |
86234
860a7a8e779e
* progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85510
diff
changeset
|
321 (vc-hg-command t nil files "log" "--template" "{rev} ") |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
322 (split-string |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
323 (buffer-substring-no-properties (point-min) (point-max)))))) |
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
324 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
325 ;; Modeled after the similar function in vc-cvs.el |
85460
d36b2b98840f
(vc-hg-revision-completion-table, vc-hg-revision-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
326 (defun vc-hg-revision-completion-table (files) |
d36b2b98840f
(vc-hg-revision-completion-table, vc-hg-revision-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
327 (lexical-let ((files files) |
78359
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
328 table) |
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
329 (setq table (lazy-completion-table |
85460
d36b2b98840f
(vc-hg-revision-completion-table, vc-hg-revision-table): Make it work when the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
85141
diff
changeset
|
330 table (lambda () (vc-hg-revision-table files)))) |
78359
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
331 table)) |
78075 | 332 |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
333 (defun vc-hg-annotate-command (file buffer &optional revision) |
78075 | 334 "Execute \"hg annotate\" on FILE, inserting the contents in BUFFER. |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
335 Optional arg REVISION is a revision to annotate from." |
105670
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
336 (vc-hg-command buffer 0 file "annotate" "-d" "-n" "--follow" |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
337 (when revision (concat "-r" revision)))) |
78075 | 338 |
96213
09da7727f35f
* vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95966
diff
changeset
|
339 (declare-function vc-annotate-convert-time "vc-annotate" (time)) |
78075 | 340 |
341 ;; The format for one line output by "hg annotate -d -n" looks like this: | |
342 ;;215 Wed Jun 20 21:22:58 2007 -0700: CONTENTS | |
343 ;; i.e: VERSION_NUMBER DATE: CONTENTS | |
80585
8c0cc53e8234
(vc-hg-annotate-re): Recognize the output of --follow.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
80582
diff
changeset
|
344 ;; If the user has set the "--follow" option, the output looks like: |
8c0cc53e8234
(vc-hg-annotate-re): Recognize the output of --follow.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
80582
diff
changeset
|
345 ;;215 Wed Jun 20 21:22:58 2007 -0700 foo.c: CONTENTS |
8c0cc53e8234
(vc-hg-annotate-re): Recognize the output of --follow.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
80582
diff
changeset
|
346 ;; i.e. VERSION_NUMBER DATE FILENAME: CONTENTS |
8c0cc53e8234
(vc-hg-annotate-re): Recognize the output of --follow.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
80582
diff
changeset
|
347 (defconst vc-hg-annotate-re |
105670
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
348 "^[ \t]*\\([0-9]+\\) \\(.\\{30\\}\\)\\(?:\\(: \\)\\|\\(?: +\\(.+\\): \\)\\)") |
78075 | 349 |
350 (defun vc-hg-annotate-time () | |
351 (when (looking-at vc-hg-annotate-re) | |
352 (goto-char (match-end 0)) | |
353 (vc-annotate-convert-time | |
354 (date-to-time (match-string-no-properties 2))))) | |
355 | |
356 (defun vc-hg-annotate-extract-revision-at-line () | |
357 (save-excursion | |
358 (beginning-of-line) | |
105670
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
359 (when (looking-at vc-hg-annotate-re) |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
360 (if (match-beginning 3) |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
361 (match-string-no-properties 1) |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
362 (cons (match-string-no-properties 1) |
107969
62fa87a581e1
Fix to vc-hg-annotate-extract-revision-at-line (Bug#5960).
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
363 (expand-file-name (match-string-no-properties 4) |
62fa87a581e1
Fix to vc-hg-annotate-extract-revision-at-line (Bug#5960).
Chong Yidong <cyd@stupidchicken.com>
parents:
106815
diff
changeset
|
364 (vc-hg-root default-directory))))))) |
78075 | 365 |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
366 (defun vc-hg-previous-revision (file rev) |
78075 | 367 (let ((newrev (1- (string-to-number rev)))) |
368 (when (>= newrev 0) | |
369 (number-to-string newrev)))) | |
370 | |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
371 (defun vc-hg-next-revision (file rev) |
78075 | 372 (let ((newrev (1+ (string-to-number rev))) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
373 (tip-revision |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
374 (with-temp-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
375 (vc-hg-command t 0 nil "tip") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
376 (goto-char (point-min)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
377 (re-search-forward "^changeset:[ \t]*\\([0-9]+\\):") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
378 (string-to-number (match-string-no-properties 1))))) |
85141
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
379 ;; We don't want to exceed the maximum possible revision number, ie |
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
380 ;; the tip revision. |
b16f7408cd3f
Carry through today's big terminology change to a few places where I
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
85139
diff
changeset
|
381 (when (<= newrev tip-revision) |
78075 | 382 (number-to-string newrev)))) |
383 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
384 ;; Modeled after the similar function in vc-bzr.el |
78075 | 385 (defun vc-hg-delete-file (file) |
386 "Delete FILE and delete it in the hg repository." | |
387 (condition-case () | |
388 (delete-file file) | |
389 (file-error nil)) | |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
390 (vc-hg-command nil 0 file "remove" "--after" "--force")) |
78075 | 391 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
392 ;; Modeled after the similar function in vc-bzr.el |
78075 | 393 (defun vc-hg-rename-file (old new) |
394 "Rename file from OLD to NEW using `hg mv'." | |
94439
d6a121c992e3
(vc-hg-rename-file): Fix argument order.
Sam Steingold <sds@gnu.org>
parents:
94003
diff
changeset
|
395 (vc-hg-command nil 0 new "mv" old)) |
78075 | 396 |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
397 (defun vc-hg-register (files &optional rev comment) |
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
398 "Register FILES under hg. |
78075 | 399 REV is ignored. |
400 COMMENT is ignored." | |
82012
878cfe0c0c5a
(vc-hg-dir-state): Fix loop.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81998
diff
changeset
|
401 (vc-hg-command nil 0 files "add")) |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
402 |
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
403 (defun vc-hg-create-repo () |
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
404 "Create a new Mercurial repository." |
82012
878cfe0c0c5a
(vc-hg-dir-state): Fix loop.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81998
diff
changeset
|
405 (vc-hg-command nil 0 nil "init")) |
78075 | 406 |
407 (defalias 'vc-hg-responsible-p 'vc-hg-root) | |
408 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
409 ;; Modeled after the similar function in vc-bzr.el |
78075 | 410 (defun vc-hg-could-register (file) |
411 "Return non-nil if FILE could be registered under hg." | |
412 (and (vc-hg-responsible-p file) ; shortcut | |
413 (condition-case () | |
414 (with-temp-buffer | |
415 (vc-hg-command t nil file "add" "--dry-run")) | |
416 ;; The command succeeds with no output if file is | |
417 ;; registered. | |
418 (error)))) | |
419 | |
96519
0197baf37347
*** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96518
diff
changeset
|
420 ;; FIXME: This would remove the file. Is that correct? |
78075 | 421 ;; (defun vc-hg-unregister (file) |
422 ;; "Unregister FILE from hg." | |
423 ;; (vc-hg-command nil nil file "remove")) | |
424 | |
108009
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
425 (declare-function log-edit-extract-headers "log-edit" (headers string)) |
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
426 |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
427 (defun vc-hg-checkin (files rev comment) |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78363
diff
changeset
|
428 "Hg-specific version of `vc-backend-checkin'. |
78075 | 429 REV is ignored." |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
430 (apply 'vc-hg-command nil 0 files |
108009
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
431 (nconc (list "commit" "-m") |
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
432 (log-edit-extract-headers '(("Author" . "--user")) |
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
433 comment)))) |
78075 | 434 |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
435 (defun vc-hg-find-revision (file rev buffer) |
78075 | 436 (let ((coding-system-for-read 'binary) |
437 (coding-system-for-write 'binary)) | |
438 (if rev | |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
439 (vc-hg-command buffer 0 file "cat" "-r" rev) |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
440 (vc-hg-command buffer 0 file "cat")))) |
78075 | 441 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
442 ;; Modeled after the similar function in vc-bzr.el |
78148
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
443 (defun vc-hg-checkout (file &optional editable rev) |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
444 "Retrieve a revision of FILE. |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
445 EDITABLE is ignored. |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
446 REV is the revision to check out into WORKFILE." |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
447 (let ((coding-system-for-read 'binary) |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
448 (coding-system-for-write 'binary)) |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
449 (with-current-buffer (or (get-file-buffer file) (current-buffer)) |
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
450 (if rev |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
451 (vc-hg-command t 0 file "cat" "-r" rev) |
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
452 (vc-hg-command t 0 file "cat"))))) |
78075 | 453 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
454 ;; Modeled after the similar function in vc-bzr.el |
78167
252b7f091c04
(vc-hg-workfile-unchanged-p): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78166
diff
changeset
|
455 (defun vc-hg-workfile-unchanged-p (file) |
252b7f091c04
(vc-hg-workfile-unchanged-p): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78166
diff
changeset
|
456 (eq 'up-to-date (vc-hg-state file))) |
252b7f091c04
(vc-hg-workfile-unchanged-p): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78166
diff
changeset
|
457 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
458 ;; Modeled after the similar function in vc-bzr.el |
78075 | 459 (defun vc-hg-revert (file &optional contents-done) |
460 (unless contents-done | |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
461 (with-temp-buffer (vc-hg-command t 0 file "revert")))) |
78075 | 462 |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
463 ;;; Hg specific functionality. |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
464 |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
465 (defvar vc-hg-extra-menu-map |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
466 (let ((map (make-sparse-keymap))) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
467 map)) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
468 |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
469 (defun vc-hg-extra-menu () vc-hg-extra-menu-map) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
470 |
92122
74bf6df13b6c
* vc.el (vc-find-revision): Make vc-parent-buffer local before
Dan Nicolaescu <dann@ics.uci.edu>
parents:
92093
diff
changeset
|
471 (defun vc-hg-extra-status-menu () vc-hg-extra-menu-map) |
91951
d42fe75822fe
* vc.el (vc-status-menu, vc-status-menu-map-filter): New functions.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87903
diff
changeset
|
472 |
105473
07f6674a0832
(log-view-vc-backend): Declare for compiler.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105151
diff
changeset
|
473 (defvar log-view-vc-backend) |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
474 |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
475 (defstruct (vc-hg-extra-fileinfo |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
476 (:copier nil) |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
477 (:constructor vc-hg-create-extra-fileinfo (rename-state extra-name)) |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
478 (:conc-name vc-hg-extra-fileinfo->)) |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
479 rename-state ;; rename or copy state |
95542
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
480 extra-name) ;; original name for copies and rename targets, new name for |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
481 |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
482 (declare-function vc-default-dir-printer "vc-dir" (backend fileentry)) |
96213
09da7727f35f
* vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95966
diff
changeset
|
483 |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
484 (defun vc-hg-dir-printer (info) |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
485 "Pretty-printer for the vc-dir-fileinfo structure." |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
486 (let ((extra (vc-dir-fileinfo->extra info))) |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
487 (vc-default-dir-printer 'Hg info) |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
488 (when extra |
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
489 (insert (propertize |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
490 (format " (%s %s)" |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
491 (case (vc-hg-extra-fileinfo->rename-state extra) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
492 ('copied "copied from") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
493 ('renamed-from "renamed from") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
494 ('renamed-to "renamed to")) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
495 (vc-hg-extra-fileinfo->extra-name extra)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
496 'face 'font-lock-comment-face))))) |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
497 |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93957
diff
changeset
|
498 (defun vc-hg-after-dir-status (update-function) |
87844
3bd7c8c8bbe7
* vc.el: Make vc-status asynchronous.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87674
diff
changeset
|
499 (let ((status-char nil) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
500 (file nil) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
501 (translation '((?= . up-to-date) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
502 (?C . up-to-date) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
503 (?A . added) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
504 (?R . removed) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
505 (?M . edited) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
506 (?I . ignored) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
507 (?! . missing) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
508 (? . copy-rename-line) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
509 (?? . unregistered))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
510 (translated nil) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
511 (result nil) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
512 (last-added nil) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
513 (last-line-copy nil)) |
87844
3bd7c8c8bbe7
* vc.el: Make vc-status asynchronous.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87674
diff
changeset
|
514 (goto-char (point-min)) |
87599
efe45ef69877
* vc.el (vc-status-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87574
diff
changeset
|
515 (while (not (eobp)) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
516 (setq translated (cdr (assoc (char-after) translation))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
517 (setq file |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
518 (buffer-substring-no-properties (+ (point) 2) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
519 (line-end-position))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
520 (cond ((not translated) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
521 (setq last-line-copy nil)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
522 ((eq translated 'up-to-date) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
523 (setq last-line-copy nil)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
524 ((eq translated 'copy-rename-line) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
525 ;; For copied files the output looks like this: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
526 ;; A COPIED_FILE_NAME |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
527 ;; ORIGINAL_FILE_NAME |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
528 (setf (nth 2 last-added) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
529 (vc-hg-create-extra-fileinfo 'copied file)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
530 (setq last-line-copy t)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
531 ((and last-line-copy (eq translated 'removed)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
532 ;; For renamed files the output looks like this: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
533 ;; A NEW_FILE_NAME |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
534 ;; ORIGINAL_FILE_NAME |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
535 ;; R ORIGINAL_FILE_NAME |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
536 ;; We need to adjust the previous entry to not think it is a copy. |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
537 (setf (vc-hg-extra-fileinfo->rename-state (nth 2 last-added)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
538 'renamed-from) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
539 (push (list file translated |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
540 (vc-hg-create-extra-fileinfo |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
541 'renamed-to (nth 0 last-added))) result) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
542 (setq last-line-copy nil)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
543 (t |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
544 (setq last-added (list file translated nil)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
545 (push last-added result) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
546 (setq last-line-copy nil))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
547 (forward-line)) |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93957
diff
changeset
|
548 (funcall update-function result))) |
87844
3bd7c8c8bbe7
* vc.el: Make vc-status asynchronous.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87674
diff
changeset
|
549 |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93957
diff
changeset
|
550 (defun vc-hg-dir-status (dir update-function) |
94511
40171abb3041
(vc-hg-extra-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94481
diff
changeset
|
551 (vc-hg-command (current-buffer) 'async dir "status" "-C") |
93382
8e46096e0cb3
* vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
93327
diff
changeset
|
552 (vc-exec-after |
94003
2ecb2ea8d5b5
Change `dir-status' to not take (and pass) status-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93957
diff
changeset
|
553 `(vc-hg-after-dir-status (quote ,update-function)))) |
87599
efe45ef69877
* vc.el (vc-status-fileinfo): New defstruct.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87574
diff
changeset
|
554 |
98492
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
555 (defun vc-hg-dir-status-files (dir files default-state update-function) |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
556 (apply 'vc-hg-command (current-buffer) 'async dir "status" "-C" files) |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
557 (vc-exec-after |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
558 `(vc-hg-after-dir-status (quote ,update-function)))) |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
559 |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
560 (defun vc-hg-dir-extra-header (name &rest commands) |
95542
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
561 (concat (propertize name 'face 'font-lock-type-face) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
562 (propertize |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
563 (with-temp-buffer |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
564 (apply 'vc-hg-command (current-buffer) 0 nil commands) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
565 (buffer-substring-no-properties (point-min) (1- (point-max)))) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
566 'face 'font-lock-variable-name-face))) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
567 |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
568 (defun vc-hg-dir-extra-headers (dir) |
95542
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
569 "Generate extra status headers for a Mercurial tree." |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
570 (let ((default-directory dir)) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
571 (concat |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
572 (vc-hg-dir-extra-header "Root : " "root") "\n" |
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
573 (vc-hg-dir-extra-header "Branch : " "id" "-b") "\n" |
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
574 (vc-hg-dir-extra-header "Tags : " "id" "-t") ; "\n" |
95542
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
575 ;; these change after each commit |
99159
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
576 ;; (vc-hg-dir-extra-header "Local num : " "id" "-n") "\n" |
b0dce7f34dda
* vc.el: Rename VC methods that were missed when vc-status was
Dan Nicolaescu <dann@ics.uci.edu>
parents:
98492
diff
changeset
|
577 ;; (vc-hg-dir-extra-header "Global id : " "id" "-i") |
95542
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
578 ))) |
dfffc14d8182
(vc-hg-status-extra-header, vc-hg-status-extra-headers):
Sam Steingold <sds@gnu.org>
parents:
95087
diff
changeset
|
579 |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
580 (defun vc-hg-log-incoming (buffer remote-location) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
581 (vc-hg-command buffer 1 nil "incoming" "-n" (unless (string= remote-location "") |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
582 remote-location))) |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
583 |
107795
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
584 (defun vc-hg-log-outgoing (buffer remote-location) |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
585 (vc-hg-command buffer 1 nil "outgoing" "-n" (unless (string= remote-location "") |
d47e1fb98df3
Add new VC methods: vc-log-incoming and vc-log-outgoing.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107747
diff
changeset
|
586 remote-location))) |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
587 |
86234
860a7a8e779e
* progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85510
diff
changeset
|
588 (declare-function log-view-get-marked "log-view" ()) |
860a7a8e779e
* progmodes/octave-mod.el (inferior-octave-send-list-and-digest):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
85510
diff
changeset
|
589 |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
590 ;; XXX maybe also add key bindings for these functions. |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
591 (defun vc-hg-push () |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
592 (interactive) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
593 (let ((marked-list (log-view-get-marked))) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
594 (if marked-list |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
595 (apply #'vc-hg-command |
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
596 nil 0 nil |
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
597 "push" |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
598 (apply 'nconc |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
599 (mapcar (lambda (arg) (list "-r" arg)) marked-list))) |
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
600 (error "No log entries selected for push")))) |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
601 |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
602 (defun vc-hg-pull () |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
603 (interactive) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
604 (let ((marked-list (log-view-get-marked))) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
605 (if marked-list |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
606 (apply #'vc-hg-command |
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
607 nil 0 nil |
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
608 "pull" |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
609 (apply 'nconc |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
610 (mapcar (lambda (arg) (list "-r" arg)) marked-list))) |
83759
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
611 (error "No log entries selected for pull")))) |
493b2df20f41
(vc-hg-extra-menu-map): New variable.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
82245
diff
changeset
|
612 |
78075 | 613 ;;; Internal functions |
614 | |
81964
ba5a7f46413b
Put the lower half (the back-end) of NewVC in place. This commit
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
81757
diff
changeset
|
615 (defun vc-hg-command (buffer okstatus file-or-list &rest flags) |
78075 | 616 "A wrapper around `vc-do-command' for use in vc-hg.el. |
99862
83ae2ae7a4c4
(vc-hg-global-switches): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
99783
diff
changeset
|
617 The difference to vc-do-command is that this function always invokes `hg', |
83ae2ae7a4c4
(vc-hg-global-switches): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
99783
diff
changeset
|
618 and that it passes `vc-hg-global-switches' to it before FLAGS." |
83ae2ae7a4c4
(vc-hg-global-switches): Remove.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
99783
diff
changeset
|
619 (apply 'vc-do-command (or buffer "*vc*") okstatus "hg" file-or-list |
78075 | 620 (if (stringp vc-hg-global-switches) |
621 (cons vc-hg-global-switches flags) | |
622 (append vc-hg-global-switches | |
623 flags)))) | |
624 | |
625 (defun vc-hg-root (file) | |
626 (vc-find-root file ".hg")) | |
627 | |
628 (provide 'vc-hg) | |
629 | |
78086 | 630 ;; arch-tag: bd094dc5-715a-434f-a331-37b9fb7cd954 |
78075 | 631 ;;; vc-hg.el ends here |