GNU bug report logs -
#16254
24.3.50; bzr error on emacs trunk using vc-print-log
Previous Next
Reported by: Christoph <cschol2112 <at> gmail.com>
Date: Wed, 25 Dec 2013 17:27:02 UTC
Severity: normal
Found in version 24.3.50
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 16254 in the body.
You can then email your comments to 16254 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Wed, 25 Dec 2013 17:27:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Christoph <cschol2112 <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Wed, 25 Dec 2013 17:27:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
Running `vc-print-log` on a directory containing the Emacs trunk gives
the following error:
bzr: ERROR: Path unknown at end or start of revision range: aclocal.m4
In GNU Emacs 24.3.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.4.2)
of 2013-12-14 on marvin
Bzr revision: 115528 tzz <at> lifelogs.com-20131214195519-pi759t6a59vg9b1i
Windowing system distributor `The X.Org Foundation', version 11.0.11103000
System Description: Linux Mint 13 Maya
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Wed, 25 Dec 2013 17:55:02 GMT)
Full text and
rfc822 format available.
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Some more information on this issue:
`vc-print-log` works find in a sub-directory of the tree, e.g. admin.
It looks like aclocal.m4 is ignored via .bzrignore and it is the first file
in the root tree (after running configure and such).
I seem to remember we had a similar problem before that was fixed at some
point.
On Wed, Dec 25, 2013 at 10:25 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>
> Running `vc-print-log` on a directory containing the Emacs trunk gives
> the following error:
>
> bzr: ERROR: Path unknown at end or start of revision range: aclocal.m4
>
>
>
> In GNU Emacs 24.3.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.4.2)
> of 2013-12-14 on marvin
> Bzr revision: 115528 tzz <at> lifelogs.com-20131214195519-pi759t6a59vg9b1i
> Windowing system distributor `The X.Org Foundation', version 11.0.11103000
> System Description: Linux Mint 13 Maya
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Wed, 25 Dec 2013 18:23:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 16254 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
vc-print-log was executed from a dired buffer when this happened.
vc-print-root-log works correctly and prints the Emacs bzr logs.
vc.el has the following code in vc-print-log:
(let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
(backend (car vc-fileset))
(files (cadr vc-fileset))
;; (working-revision (or working-revision (vc-working-revision (car
files))))
)
(vc-print-log-internal backend files working-revision nil limit)))
The t in vc-decude-fileset allows unregistered files per the documentation.
To follow Stefan's questions, why would we want unregistered files to be
included in the fileset for the log command?
I think this should be changed to disallow unregistered files.
Christoph
On Wed, Dec 25, 2013 at 10:54 AM, Christoph <cschol2112 <at> gmail.com> wrote:
> Some more information on this issue:
>
> `vc-print-log` works find in a sub-directory of the tree, e.g. admin.
> It looks like aclocal.m4 is ignored via .bzrignore and it is the first
> file in the root tree (after running configure and such).
>
> I seem to remember we had a similar problem before that was fixed at some
> point.
>
>
> On Wed, Dec 25, 2013 at 10:25 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>
>>
>> Running `vc-print-log` on a directory containing the Emacs trunk gives
>> the following error:
>>
>> bzr: ERROR: Path unknown at end or start of revision range: aclocal.m4
>>
>>
>>
>> In GNU Emacs 24.3.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.4.2)
>> of 2013-12-14 on marvin
>> Bzr revision: 115528 tzz <at> lifelogs.com-20131214195519-pi759t6a59vg9b1i
>> Windowing system distributor `The X.Org Foundation', version 11.0.11103000
>> System Description: Linux Mint 13 Maya
>>
>
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Wed, 25 Dec 2013 18:36:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 16254 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
I was wrong. The t argument in vc-deduce-fileset does something else. Sorry
for the noise.
On Wed, Dec 25, 2013 at 11:22 AM, Christoph <cschol2112 <at> gmail.com> wrote:
> vc-print-log was executed from a dired buffer when this happened.
> vc-print-root-log works correctly and prints the Emacs bzr logs.
>
> vc.el has the following code in vc-print-log:
>
> (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
> (backend (car vc-fileset))
> (files (cadr vc-fileset))
> ;; (working-revision (or working-revision (vc-working-revision (car
> files))))
> )
> (vc-print-log-internal backend files working-revision nil limit)))
>
> The t in vc-decude-fileset allows unregistered files per the
> documentation. To follow Stefan's questions, why would we want unregistered
> files to be included in the fileset for the log command?
>
> I think this should be changed to disallow unregistered files.
>
> Christoph
>
>
> On Wed, Dec 25, 2013 at 10:54 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>
>> Some more information on this issue:
>>
>> `vc-print-log` works find in a sub-directory of the tree, e.g. admin.
>> It looks like aclocal.m4 is ignored via .bzrignore and it is the first
>> file in the root tree (after running configure and such).
>>
>> I seem to remember we had a similar problem before that was fixed at some
>> point.
>>
>>
>> On Wed, Dec 25, 2013 at 10:25 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>>
>>>
>>> Running `vc-print-log` on a directory containing the Emacs trunk gives
>>> the following error:
>>>
>>> bzr: ERROR: Path unknown at end or start of revision range: aclocal.m4
>>>
>>>
>>>
>>> In GNU Emacs 24.3.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.4.2)
>>> of 2013-12-14 on marvin
>>> Bzr revision: 115528 tzz <at> lifelogs.com-20131214195519-pi759t6a59vg9b1i
>>> Windowing system distributor `The X.Org Foundation', version
>>> 11.0.11103000
>>> System Description: Linux Mint 13 Maya
>>>
>>
>>
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Fri, 27 Dec 2013 02:48:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 16254 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
This issue seems to be that when deducing the fileset in dired mode, the
code does not distinguish between files that are under version control and
files that aren't.
The following patch adds detection (and filtering) of unregistered members
to vc-dired-deduce-fileset.
If the marked files have any unregistered files among them, the
unregistered files are filtered out.
If all files are unregistered, an error is shown. This also covers the main
case of selecting just one unregistered file/directory.
Thoughts?
=== modified file 'lisp/vc/vc.el'
--- lisp/vc/vc.el 2013-11-26 19:17:55 +0000
+++ lisp/vc/vc.el 2013-12-27 02:40:38 +0000
@@ -1014,10 +1014,19 @@
(t (error "File is not under version control")))))
(defun vc-dired-deduce-fileset ()
- (let ((backend (vc-responsible-backend default-directory)))
- (unless backend (error "Directory not under VC"))
- (list backend
- (dired-map-over-marks (dired-get-filename nil t) nil))))
+ "Deduce a set of files and a backend to which to apply an
+operation from all the marked items in a dired buffer. Resulting
+fileset only includes items that are version controlled."
+ (let ((backend (vc-responsible-backend default-directory))
+ (fileset
+ (delq nil (mapcar
+ (lambda (x) (if (not (equal (vc-backend x) nil)) x))
+ (dired-map-over-marks
+ (dired-get-filename nil t)
+ nil)))))
+ (if (not fileset)
+ (error "Marked fileset is not under version control")
+ (list backend fileset))))
(defun vc-ensure-vc-buffer ()
"Make sure that the current buffer visits a version-controlled file."
On Wed, Dec 25, 2013 at 11:35 AM, Christoph <cschol2112 <at> gmail.com> wrote:
> I was wrong. The t argument in vc-deduce-fileset does something
> else. Sorry for the noise.
>
>
>
> On Wed, Dec 25, 2013 at 11:22 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>
>> vc-print-log was executed from a dired buffer when this happened.
>> vc-print-root-log works correctly and prints the Emacs bzr logs.
>>
>> vc.el has the following code in vc-print-log:
>>
>> (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
>> (backend (car vc-fileset))
>> (files (cadr vc-fileset))
>> ;; (working-revision (or working-revision (vc-working-revision (car
>> files))))
>> )
>> (vc-print-log-internal backend files working-revision nil limit)))
>>
>> The t in vc-decude-fileset allows unregistered files per the
>> documentation. To follow Stefan's questions, why would we want unregistered
>> files to be included in the fileset for the log command?
>>
>> I think this should be changed to disallow unregistered files.
>>
>> Christoph
>>
>>
>> On Wed, Dec 25, 2013 at 10:54 AM, Christoph <cschol2112 <at> gmail.com> wrote:
>>
>>> Some more information on this issue:
>>>
>>> `vc-print-log` works find in a sub-directory of the tree, e.g. admin.
>>> It looks like aclocal.m4 is ignored via .bzrignore and it is the first
>>> file in the root tree (after running configure and such).
>>>
>>> I seem to remember we had a similar problem before that was fixed at
>>> some point.
>>>
>>>
>>> On Wed, Dec 25, 2013 at 10:25 AM, Christoph <cschol2112 <at> gmail.com>wrote:
>>>
>>>>
>>>> Running `vc-print-log` on a directory containing the Emacs trunk gives
>>>> the following error:
>>>>
>>>> bzr: ERROR: Path unknown at end or start of revision range: aclocal.m4
>>>>
>>>>
>>>>
>>>> In GNU Emacs 24.3.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 3.4.2)
>>>> of 2013-12-14 on marvin
>>>> Bzr revision: 115528 tzz <at> lifelogs.com-20131214195519-pi759t6a59vg9b1i
>>>> Windowing system distributor `The X.Org Foundation', version
>>>> 11.0.11103000
>>>> System Description: Linux Mint 13 Maya
>>>>
>>>
>>>
>>
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Mon, 30 Dec 2013 15:54:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 16254 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
It would be nice if a fix for this issue made it into 24.4. Or do you think
that this is too intrusive of a change?
I'll add Changelog entries etc. and commit it if someone can look it over.
Thanks.
On Thu, Dec 26, 2013 at 7:47 PM, Christoph <cschol2112 <at> gmail.com> wrote:
> This issue seems to be that when deducing the fileset in dired mode, the
> code does not distinguish between files that are under version control and
> files that aren't.
>
> The following patch adds detection (and filtering) of unregistered members
> to vc-dired-deduce-fileset.
> If the marked files have any unregistered files among them, the
> unregistered files are filtered out.
> If all files are unregistered, an error is shown. This also covers the
> main case of selecting just one unregistered file/directory.
>
> Thoughts?
>
> === modified file 'lisp/vc/vc.el'
> --- lisp/vc/vc.el 2013-11-26 19:17:55 +0000
> +++ lisp/vc/vc.el 2013-12-27 02:40:38 +0000
> @@ -1014,10 +1014,19 @@
> (t (error "File is not under version control")))))
>
> (defun vc-dired-deduce-fileset ()
> - (let ((backend (vc-responsible-backend default-directory)))
> - (unless backend (error "Directory not under VC"))
> - (list backend
> - (dired-map-over-marks (dired-get-filename nil t) nil))))
> + "Deduce a set of files and a backend to which to apply an
> +operation from all the marked items in a dired buffer. Resulting
> +fileset only includes items that are version controlled."
> + (let ((backend (vc-responsible-backend default-directory))
> + (fileset
> + (delq nil (mapcar
> + (lambda (x) (if (not (equal (vc-backend x) nil)) x))
> + (dired-map-over-marks
> + (dired-get-filename nil t)
> + nil)))))
> + (if (not fileset)
> + (error "Marked fileset is not under version control")
> + (list backend fileset))))
>
> (defun vc-ensure-vc-buffer ()
> "Make sure that the current buffer visits a version-controlled file."
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Mon, 30 Dec 2013 18:42:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 16254 <at> debbugs.gnu.org (full text, mbox):
Christoph wrote:
> It would be nice if a fix for this issue made it into 24.4. Or do you think
> that this is too intrusive of a change?
24.4 is still some way off. BTW, it does not work correctly in 23.4 or
24.1, so it does not seem that urgent to me. It works fine from a vc-dir
buffer, just not a dired buffer.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Mon, 30 Dec 2013 19:04:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 16254 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
OK. I has bugged me long enough though that I finally sat down to work out
a fix.
It does work in vc-dir for edited files. vc-dir is not really an equivalent
use case though since it does not allow to show a full listing of
(up-to-date) files and hence to see their logs. Or am I missing something?
On Mon, Dec 30, 2013 at 11:41 AM, Glenn Morris <rgm <at> gnu.org> wrote:
> Christoph wrote:
>
> > It would be nice if a fix for this issue made it into 24.4. Or do you
> think
> > that this is too intrusive of a change?
>
> 24.4 is still some way off. BTW, it does not work correctly in 23.4 or
> 24.1, so it does not seem that urgent to me. It works fine from a vc-dir
> buffer, just not a dired buffer.
>
[Message part 2 (text/html, inline)]
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#16254
; Package
emacs
.
(Wed, 09 Sep 2020 13:03:02 GMT)
Full text and
rfc822 format available.
Message #29 received at 16254 <at> debbugs.gnu.org (full text, mbox):
Christoph <cschol2112 <at> gmail.com> writes:
> The following patch adds detection (and filtering) of unregistered members to
> vc-dired-deduce-fileset.
> If the marked files have any unregistered files among them, the unregistered files
> are filtered out.
> If all files are unregistered, an error is shown. This also covers the main case of
> selecting just one unregistered file/directory.
[...]
> (defun vc-dired-deduce-fileset ()
> - (let ((backend (vc-responsible-backend default-directory)))
> - (unless backend (error "Directory not under VC"))
> - (list backend
> - (dired-map-over-marks (dired-get-filename nil t) nil))))
> + "Deduce a set of files and a backend to which to apply an
> +operation from all the marked items in a dired buffer. Resulting
> +fileset only includes items that are version controlled."
> + (let ((backend (vc-responsible-backend default-directory))
> + (fileset
> + (delq nil (mapcar
> + (lambda (x) (if (not (equal (vc-backend x) nil)) x))
> + (dired-map-over-marks
> + (dired-get-filename nil t)
> + nil)))))
The code in question has changed substantially since this patch was
proposed six years ago. It's now:
(defun dired-vc-deduce-fileset (&optional state-model-only-files not-state-changing)
(let ((backend (vc-responsible-backend default-directory))
(files (dired-get-marked-files nil nil nil nil t))
only-files-list
state
model)
If I'm reading it correctly, it... more or less covers the same things
that this patch was supposed to do (but in a totally different way?), so
I guess this patch is no longer necessary.
So I'm closing this bug report. If there still is something here that
needs fixing, please respond to the debbugs address, and we'll reopen.
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
bug closed, send any further explanations to
16254 <at> debbugs.gnu.org and Christoph <cschol2112 <at> gmail.com>
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Wed, 09 Sep 2020 13:03:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 08 Oct 2020 11:24:07 GMT)
Full text and
rfc822 format available.
This bug report was last modified 4 years and 312 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.