GNU bug report logs -
#1420
annotate from log-view displays junk buffer
Previous Next
Reported by: Per Cederqvist <ceder <at> ingate.com>
Date: Mon, 24 Nov 2008 16:15:02 UTC
Severity: normal
Done: Chong Yidong <cyd <at> stupidchicken.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Mon, 24 Nov 2008 16:21:32 -0500
with message-id <87k5as6crn.fsf <at> cyd.mit.edu>
and subject line Re: annotate from log-view displays junk buffer
has caused the Emacs bug report #1420,
regarding annotate from log-view displays junk buffer
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don <at> donarmstrong.com
immediately.)
--
1420: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=1420
Emacs Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
1. Open a version-controlled file. (The one I used is maintained by
Mercurial, but I don't think that matters.)
2. Bring up the log of revisions with "C-x v l" (vc-print-log).
3. Move to an interesting revision with TAB.
4. Press "a" to annotate that revision (log-view-annotate-version).
The annotations are properly inserted in a buffer named "*Annotate
slidegtk.py (rev 19)*", but that buffer is not displayed. Instead,
an empty buffer named "Annotating... done" is displayed.
The cause seems to be that log-view-annotate-version expects
vc-annotate to return the buffer. But at least in Emacs 22.3,
vc-annotate returns whatever the function message returns. The
following patch seems to fix the problem:
--- vc.el~ 2008-11-24 12:25:24.857985150 +0100
+++ vc.el 2008-11-24 12:25:46.288999164 +0100
@@ -3223,7 +3223,8 @@
display-mode)))
(when current-line
(goto-line current-line temp-buffer-name))
- (message "Annotating... done")))
+ (message "Annotating... done")
+ temp-buffer-name))
(defun vc-annotate-prev-version (prefix)
"Visit the annotation of the version previous to this one.
In GNU Emacs 22.3.1 (i686-pc-linux-gnu, X toolkit, Xaw3d scroll bars)
of 2008-09-10 on yagi.ingate.se
Windowing system distributor `The X.Org Foundation', version 11.0.60802000
configured using `configure '--prefix=/sw/emacs/22.3''
Important settings:
value of $LC_ALL: nil
value of $LC_COLLATE: nil
value of $LC_CTYPE: nil
value of $LC_MESSAGES: nil
value of $LC_MONETARY: nil
value of $LC_NUMERIC: nil
value of $LC_TIME: nil
value of $LANG: nil
locale-coding-system: nil
default-enable-multibyte-characters: t
Major mode: Fundamental
Minor modes in effect:
tooltip-mode: t
mouse-wheel-mode: t
file-name-shadow-mode: t
global-font-lock-mode: t
blink-cursor-mode: t
unify-8859-on-encoding-mode: t
utf-translate-cjk-mode: t
auto-compression-mode: t
line-number-mode: t
Recent input:
C-x C-f s <tab> <return> C-x v l <tab> <tab> a M-x
r e p o r t - e m a c s - b u g <return>
Recent messages:
Loading log-view...
Loading easy-mmode...done
Loading log-view...done
Annotating...
Loading help-mode...done
Redisplaying annotation...done
Annotating... done
Loading emacsbug...
Loading regexp-opt...done
Loading emacsbug...done
[Message part 3 (message/rfc822, inline)]
> The cause seems to be that log-view-annotate-version expects
> vc-annotate to return the buffer. But at least in Emacs 22.3,
> vc-annotate returns whatever the function message returns. The
> following patch seems to fix the problem:
I fixed this with a change to log-view-annotate-version instead. Thanks
for the bug report.
This bug report was last modified 16 years and 183 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.