Mercurial > emacs
annotate lisp/vc/vc-hg.el @ 110270:c7809974cd64
Misc cleanups and simplifications.
* lisp/font-lock.el (save-buffer-state): Remove `varlist' arg.
(font-lock-unfontify-region, font-lock-default-fontify-region):
Update usage correspondingly.
(font-lock-fontify-syntactic-keywords-region):
Set parse-sexp-lookup-properties buffer-locally here.
(font-lock-fontify-syntactically-region): Remove unused `ppss' arg.
* lisp/progmodes/ada-mode.el: Replace "(set '" with setq.
(ada-mode): Simplify.
(ada-create-case-exception, ada-adjust-case-interactive)
(ada-adjust-case-region, ada-format-paramlist, ada-indent-current)
(ada-search-ignore-string-comment, ada-move-to-start)
(ada-move-to-end): Use with-syntax-table.
* lisp/progmodes/fortran.el (fortran-line-length): Don't recompute
syntactic keywords redundantly a second time.
* lisp/progmodes/js.el (require): Require is already "eval-and-compile".
(js--re-search-forward): Avoid `eval'. Preserve the error data.
(js--re-search-backward): Use js--re-search-forward.
* lisp/progmodes/octave-mod.el (electric-indent-chars): Silence bytecomp.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 08 Sep 2010 18:21:23 +0200 |
parents | 280c8ae2476d |
children | 1b626601d32d 41bf9b6f3b91 |
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 | |
108971
d928a6a7c3f2
* lisp/finder.el (finder-known-keywords): Add keyword "vc"
Juri Linkov <juri@jurta.org>
parents:
108970
diff
changeset
|
6 ;; Keywords: vc tools |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
108971
diff
changeset
|
7 ;; Package: vc |
78075 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94572
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
78075 | 12 ;; 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
|
13 ;; 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
|
14 ;; (at your option) any later version. |
78075 | 15 |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; 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
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
78075 | 23 |
24 ;;; Commentary: | |
25 | |
26 ;; This is a mercurial version control backend | |
27 | |
28 ;;; Thanks: | |
29 | |
30 ;;; Bugs: | |
31 | |
32 ;;; Installation: | |
33 | |
34 ;;; Todo: | |
35 | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
36 ;; 1) Implement the rest of the vc interface. See the comment at the |
78075 | 37 ;; beginning of vc.el. The current status is: |
38 | |
39 ;; 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
|
40 ;; 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
|
41 ;; * 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
|
42 ;; STATE-QUERYING FUNCTIONS |
78075 | 43 ;; * registered (file) OK |
44 ;; * 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
|
45 ;; - state-heuristic (file) NOT NEEDED |
98492
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
46 ;; - dir-status (dir update-function) OK |
b3eefcc54430
(vc-hg-dir-status-files): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96519
diff
changeset
|
47 ;; - 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
|
48 ;; - 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
|
49 ;; - dir-printer (fileinfo) OK |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
50 ;; * working-revision (file) OK |
78075 | 51 ;; - 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
|
52 ;; * checkout-model (files) OK |
78167
252b7f091c04
(vc-hg-workfile-unchanged-p): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78166
diff
changeset
|
53 ;; - workfile-unchanged-p (file) OK |
78075 | 54 ;; - mode-line-string (file) NOT NEEDED |
55 ;; 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
|
56 ;; * 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
|
57 ;; * 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
|
58 ;; - init-revision () NOT NEEDED |
78075 | 59 ;; - responsible-p (file) OK |
60 ;; - could-register (file) OK | |
61 ;; - receive-file (file rev) ?? PROBABLY NOT NEEDED | |
62 ;; - 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
|
63 ;; * 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
|
64 ;; * find-revision (file rev buffer) OK |
78148
9cbb2ce8ec8c
(vc-hg-state): Handle removed files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78086
diff
changeset
|
65 ;; * checkout (file &optional editable rev) OK |
78075 | 66 ;; * revert (file &optional contents-done) OK |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
67 ;; - rollback (files) ?? PROBABLY NOT NEEDED |
78075 | 68 ;; - merge (file rev1 rev2) NEEDED |
69 ;; - 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
|
70 ;; - steal-lock (file &optional revision) NOT NEEDED |
78075 | 71 ;; HISTORY FUNCTIONS |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
72 ;; * print-log (files buffer &optional shortlog start-revision limit) OK |
78075 | 73 ;; - 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
|
74 ;; - show-log-entry (revision) NOT NEEDED, DEFAULT IS GOOD |
78075 | 75 ;; - comment-history (file) NOT NEEDED |
76 ;; - 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
|
77 ;; * 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
|
78 ;; - revision-completion-table (files) OK? |
78075 | 79 ;; - annotate-command (file buf &optional rev) OK |
80 ;; - 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
|
81 ;; - annotate-current-time () NOT NEEDED |
78075 | 82 ;; - 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
|
83 ;; TAG SYSTEM |
101200
bbf505632d29
(vc-hg-diff): Pass relative file names. (Bug#1903)
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100908
diff
changeset
|
84 ;; - 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
|
85 ;; - retrieve-tag (dir name update) NEEDED |
78075 | 86 ;; MISCELLANEOUS |
87 ;; - make-version-backups-p (file) ?? | |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
88 ;; - 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
|
89 ;; - 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
|
90 ;; - next-revision (file rev) OK |
78075 | 91 ;; - check-headers () ?? |
92 ;; - clear-headers () ?? | |
93 ;; - delete-file (file) TEST IT | |
94 ;; - rename-file (old new) OK | |
95 ;; - find-file-hook () PROBABLY NOT NEEDED | |
96 | |
94853
1c9a3c7fa4f1
(vc-hg-diff, vc-hg-annotate-command): Use when not if.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
94847
diff
changeset
|
97 ;; 2) Implement Stefan Monnier's advice: |
78075 | 98 ;; vc-hg-registered and vc-hg-state |
99 ;; Both of those functions should be super extra careful to fail gracefully in | |
100 ;; unexpected circumstances. The reason this is important is that any error | |
101 ;; there will prevent the user from even looking at the file :-( | |
102 ;; Ideally, just like in vc-arch and vc-cvs, checking that the file is under | |
103 ;; mercurial's control and extracting the current revision should be done | |
104 ;; without even using `hg' (this way even if you don't have `hg' installed, | |
105 ;; Emacs is able to tell you this file is under mercurial's control). | |
106 | |
107 ;;; History: | |
108 ;; | |
109 | |
110 ;;; Code: | |
111 | |
112 (eval-when-compile | |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
113 (require 'cl) |
96260 | 114 (require 'vc) |
115 (require 'vc-dir)) | |
78075 | 116 |
117 ;;; Customization options | |
118 | |
119 (defcustom vc-hg-global-switches nil | |
100171 | 120 "Global switches to pass to any Hg command." |
78075 | 121 :type '(choice (const :tag "None" nil) |
122 (string :tag "Argument String") | |
100180
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
123 (repeat :tag "Argument List" :value ("") string)) |
78075 | 124 :version "22.2" |
125 :group 'vc) | |
126 | |
100180
a5dc2e77b960
(vc-hg-diff-switches): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
100171
diff
changeset
|
127 (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
|
128 "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
|
129 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
|
130 :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
|
131 (const :tag "None" t) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
132 (string :tag "Argument String") |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
133 (repeat :tag "Argument List" :value ("") string)) |
99736
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
134 :version "23.1" |
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
135 :group 'vc) |
015fd0131c0b
(vc-hg-diff-switches): New option.
Glenn Morris <rgm@gnu.org>
parents:
99159
diff
changeset
|
136 |
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
|
137 |
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 ;;; 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
|
139 |
94563
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-revision-granularity () 'repository) |
a0bb8ca25a33
Clean up vc*-revision-granularity and vc*-checkout-model.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
94542
diff
changeset
|
141 (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
|
142 |
78075 | 143 ;;; State querying functions |
144 | |
145 ;;;###autoload (defun vc-hg-registered (file) | |
146 ;;;###autoload "Return non-nil if FILE is registered with hg." | |
147 ;;;###autoload (if (vc-find-root file ".hg") ; short cut | |
148 ;;;###autoload (progn | |
149 ;;;###autoload (load "vc-hg") | |
150 ;;;###autoload (vc-hg-registered file)))) | |
151 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
152 ;; Modeled after the similar function in vc-bzr.el |
78075 | 153 (defun vc-hg-registered (file) |
154 "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
|
155 (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
|
156 (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
|
157 (and state (not (memq state '(ignored unregistered))))))) |
78075 | 158 |
159 (defun vc-hg-state (file) | |
160 "Hg-specific version of `vc-state'." | |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
161 (let* |
78075 | 162 ((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
|
163 (default-directory (file-name-directory file)) |
78075 | 164 (out |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
165 (with-output-to-string |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
166 (with-current-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
167 standard-output |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
168 (setq status |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
169 (condition-case nil |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
170 ;; Ignore all errors. |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
171 (let ((process-environment |
108322
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
172 ;; Avoid localization of messages so we |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
173 ;; can parse the output. |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
174 (append (list "TERM=dumb" "LANGUAGE=C" "HGRCPATH=") |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
175 process-environment))) |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
176 (process-file |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
177 "hg" nil t nil |
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
178 "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
|
179 ;; 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
|
180 ;; executable. |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
181 (error nil))))))) |
78075 | 182 (when (eq 0 status) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
183 (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
|
184 (let ((state (aref out 0))) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
185 (cond |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
186 ((eq state ?=) 'up-to-date) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
187 ((eq state ?A) 'added) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
188 ((eq state ?M) 'edited) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
189 ((eq state ?I) 'ignored) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
190 ((eq state ?R) 'removed) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
191 ((eq state ?!) 'missing) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
192 ((eq state ??) 'unregistered) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
193 ((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
|
194 (t 'up-to-date))))))) |
78075 | 195 |
85139
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
196 (defun vc-hg-working-revision (file) |
8ba0e30716a5
Terminology cleanup.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
83759
diff
changeset
|
197 "Hg-specific version of `vc-working-revision'." |
91991
f40c311f15ac
Kill eol whitespace; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
91953
diff
changeset
|
198 (let* |
78075 | 199 ((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
|
200 (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
|
201 ;; 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
|
202 (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
|
203 process-environment)) |
78075 | 204 (out |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
205 (with-output-to-string |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
206 (with-current-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
207 standard-output |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
208 (setq status |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
209 (condition-case nil |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
210 (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
|
211 ;; 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
|
212 (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
|
213 "hg" nil t nil |
108322
a70c2c59b3f6
Fix hg envvar handling (Bug#5846).
Chong Yidong <cyd@stupidchicken.com>
parents:
107972
diff
changeset
|
214 "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
|
215 ;; 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
|
216 ;; executable. |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
217 (error nil))))))) |
107972
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
218 (if (eq 0 status) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
219 out |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
220 ;; 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
|
221 ;; 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
|
222 (setq status |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
223 (condition-case nil |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
224 (let ((process-environment avoid-local-env)) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
225 (process-file |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
226 "hg" nil nil nil |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
227 ;; 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
|
228 ;; 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
|
229 ;; 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
|
230 "log" "-l1" (file-relative-name file))) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
231 ;; 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
|
232 ;; executable. |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
233 (error nil))) |
d7f8e879d70c
Fix the version number for added files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
107969
diff
changeset
|
234 (when (eq 0 status) "0")))) |
78075 | 235 |
236 ;;; History functions | |
237 | |
103403
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
238 (defcustom vc-hg-log-switches nil |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
239 "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
|
240 :type '(choice (const :tag "None" nil) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
241 (string :tag "Argument String") |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
242 (repeat :tag "Argument List" :value ("") string)) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
243 :group 'vc-hg) |
cb4483f32179
(vc-hg-log-switches): Add defcustom.
Sam Steingold <sds@gnu.org>
parents:
101200
diff
changeset
|
244 |
106575
87010af04b9a
(vc-hg-print-log): Fix argument order.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106472
diff
changeset
|
245 (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
|
246 "Get change log associated with FILES." |
78075 | 247 ;; `vc-do-command' creates the buffer, but we need it before running |
248 ;; the command. | |
249 (vc-setup-buffer buffer) | |
250 ;; If the buffer exists from a previous invocation it might be | |
251 ;; read-only. | |
252 (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
|
253 (with-current-buffer |
054335cbee3d
* log-view.el (log-view-diff-changeset): New function.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95542
diff
changeset
|
254 buffer |
105010
b3c2589ed19e
* vc.el (top): print-log method now takes an optional SHORTLOG
Dan Nicolaescu <dann@ics.uci.edu>
parents:
103596
diff
changeset
|
255 (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
|
256 (nconc |
106472
6e0f1038bc44
Support showing a single log entry from vc-annotate.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
106103
diff
changeset
|
257 (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
|
258 (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
|
259 (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
|
260 vc-hg-log-switches))))) |
78075 | 261 |
262 (defvar log-view-message-re) | |
263 (defvar log-view-file-re) | |
264 (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
|
265 (defvar log-view-per-file-logs) |
78075 | 266 |
78404
27f00e50116a
Change capitalization of VC backend names for new backends
Miles Bader <miles@gnu.org>
parents:
78363
diff
changeset
|
267 (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
|
268 (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
|
269 (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
|
270 (set (make-local-variable 'log-view-per-file-logs) nil) |
78075 | 271 (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
|
272 (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
|
273 "^\\([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
|
274 "^changeset:[ \t]*\\([0-9]+\\):\\(.+\\)")) |
78075 | 275 (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
|
276 (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
|
277 (append `((,log-view-message-re |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
278 (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
|
279 (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
|
280 (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
|
281 (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
|
282 (5 'change-log-name)))) |
78075 | 283 (append |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
284 log-view-font-lock-keywords |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
285 '( |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
286 ;; Handle the case: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
287 ;; user: FirstName LastName <foo@bar> |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
288 ("^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
|
289 (1 'change-log-name) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
290 (2 'change-log-email)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
291 ;; Handle the cases: |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
292 ;; user: foo@bar |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
293 ;; and |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
294 ;; user: foo |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
295 ("^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
|
296 (1 'change-log-email)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
297 ("^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
|
298 ("^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
|
299 ("^summary:[ \t]+\\(.+\\)" (1 'log-view-message))))))) |
78075 | 300 |
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
|
301 (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
|
302 "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
|
303 (let* ((firstfile (car files)) |
105145
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
304 (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
|
305 (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
|
306 (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
|
307 (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
|
308 (setq oldvers working)) |
106103
a3a5df7c686c
(vc-hg-diff): Fix last patch: do not change directory.
Sam Steingold <sds@gnu.org>
parents:
106033
diff
changeset
|
309 (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
|
310 (append |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
311 (vc-switches 'hg 'diff) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
312 (when oldvers |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
313 (if newvers |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
314 (list "-r" oldvers "-r" newvers) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
315 (list "-r" oldvers))))))) |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
316 |
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
|
317 (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
|
318 (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
|
319 (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
|
320 (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
|
321 (split-string |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
322 (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
|
323 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
324 ;; 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
|
325 (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
|
326 (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
|
327 table) |
2dd5d799a16d
* vc-git.el: (vc-directory-exclusion-list, vc-handled-backends):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
328 (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
|
329 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
|
330 table)) |
78075 | 331 |
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
|
332 (defun vc-hg-annotate-command (file buffer &optional revision) |
78075 | 333 "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
|
334 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
|
335 (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
|
336 (when revision (concat "-r" revision)))) |
78075 | 337 |
96213
09da7727f35f
* vc-hg.el (vc-annotate-convert-time, vc-default-status-printer):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
95966
diff
changeset
|
338 (declare-function vc-annotate-convert-time "vc-annotate" (time)) |
78075 | 339 |
340 ;; The format for one line output by "hg annotate -d -n" looks like this: | |
341 ;;215 Wed Jun 20 21:22:58 2007 -0700: CONTENTS | |
342 ;; 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
|
343 ;; 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
|
344 ;;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
|
345 ;; 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
|
346 (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
|
347 "^[ \t]*\\([0-9]+\\) \\(.\\{30\\}\\)\\(?:\\(: \\)\\|\\(?: +\\(.+\\): \\)\\)") |
78075 | 348 |
349 (defun vc-hg-annotate-time () | |
350 (when (looking-at vc-hg-annotate-re) | |
351 (goto-char (match-end 0)) | |
352 (vc-annotate-convert-time | |
353 (date-to-time (match-string-no-properties 2))))) | |
354 | |
355 (defun vc-hg-annotate-extract-revision-at-line () | |
356 (save-excursion | |
357 (beginning-of-line) | |
105670
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
358 (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
|
359 (if (match-beginning 3) |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
360 (match-string-no-properties 1) |
6f463ea7a91a
Make vc-annotate work through copies and renames.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105473
diff
changeset
|
361 (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
|
362 (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
|
363 (vc-hg-root default-directory))))))) |
78075 | 364 |
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
|
365 (defun vc-hg-previous-revision (file rev) |
78075 | 366 (let ((newrev (1- (string-to-number rev)))) |
367 (when (>= newrev 0) | |
368 (number-to-string newrev)))) | |
369 | |
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
|
370 (defun vc-hg-next-revision (file rev) |
78075 | 371 (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
|
372 (tip-revision |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
373 (with-temp-buffer |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
374 (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
|
375 (goto-char (point-min)) |
767b63857edd
(vc-hg-print-log): Fix shortlog arg passing.
Sam Steingold <sds@gnu.org>
parents:
105010
diff
changeset
|
376 (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
|
377 (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
|
378 ;; 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
|
379 ;; 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
|
380 (when (<= newrev tip-revision) |
78075 | 381 (number-to-string newrev)))) |
382 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
383 ;; Modeled after the similar function in vc-bzr.el |
78075 | 384 (defun vc-hg-delete-file (file) |
385 "Delete FILE and delete it in the hg repository." | |
386 (condition-case () | |
387 (delete-file file) | |
388 (file-error nil)) | |
78182
86c8d81f944f
(vc-hg-diff): Use vc-hg-command.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78167
diff
changeset
|
389 (vc-hg-command nil 0 file "remove" "--after" "--force")) |
78075 | 390 |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
391 ;; Modeled after the similar function in vc-bzr.el |
78075 | 392 (defun vc-hg-rename-file (old new) |
393 "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
|
394 (vc-hg-command nil 0 new "mv" old)) |
78075 | 395 |
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
|
396 (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
|
397 "Register FILES under hg. |
78075 | 398 REV is ignored. |
399 COMMENT is ignored." | |
82012
878cfe0c0c5a
(vc-hg-dir-state): Fix loop.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81998
diff
changeset
|
400 (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
|
401 |
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 (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
|
403 "Create a new Mercurial repository." |
82012
878cfe0c0c5a
(vc-hg-dir-state): Fix loop.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
81998
diff
changeset
|
404 (vc-hg-command nil 0 nil "init")) |
78075 | 405 |
406 (defalias 'vc-hg-responsible-p 'vc-hg-root) | |
407 | |
96365
65532b2a1819
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96260
diff
changeset
|
408 ;; Modeled after the similar function in vc-bzr.el |
78075 | 409 (defun vc-hg-could-register (file) |
410 "Return non-nil if FILE could be registered under hg." | |
411 (and (vc-hg-responsible-p file) ; shortcut | |
412 (condition-case () | |
413 (with-temp-buffer | |
414 (vc-hg-command t nil file "add" "--dry-run")) | |
415 ;; The command succeeds with no output if file is | |
416 ;; registered. | |
417 (error)))) | |
418 | |
96519
0197baf37347
*** empty log message ***
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96518
diff
changeset
|
419 ;; FIXME: This would remove the file. Is that correct? |
78075 | 420 ;; (defun vc-hg-unregister (file) |
421 ;; "Unregister FILE from hg." | |
422 ;; (vc-hg-command nil nil file "remove")) | |
423 | |
108009
17d3324f96dd
Make the log-edit comments use RFC822 format throughout.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107978
diff
changeset
|
424 (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
|
425 |
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
|
426 (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
|
427 "Hg-specific version of `vc-backend-checkin'. |
78075 | 428 REV is ignored." |
107747
94a453a3e40a
(vc-hg-push, vc-hg-pull): Use `apply' when calling
Sam Steingold <sds@gnu.org>
parents:
107484
diff
changeset
|
429 (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
|
430 (nconc (list "commit" "-m") |
108913
c05344a913c8
Improve support for special markup in the VC commit message.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
108375
diff
changeset
|
431 (log-edit-extract-headers '(("Author" . "--user") |
c05344a913c8
Improve support for special markup in the VC commit message.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
108375
diff
changeset
|
432 ("Date" . "--date")) |
108009
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 |