unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* vc-annotate fails
@ 2005-07-01 11:31 Robert J. Chassell
  2005-07-01 12:36 ` Kim F. Storm
  0 siblings, 1 reply; 7+ messages in thread
From: Robert J. Chassell @ 2005-07-01 11:31 UTC (permalink / raw)
  Cc: bob

Today's GNU Emacs CVS snapshot, Fri, 2005 Jul  1  10:39 UTC
GNU Emacs 22.0.50.34 (i686-pc-linux-gnu, GTK+ Version 2.6.8)
started with

    src/emacs -Q -D

The lisp/loadhist.el file is 232 lines long.  However, after visiting
it, and running `vc-annotate' (C-x v g) to produce

    *Annotate loadhist.el (rev 1.33)*

only a 67 line buffer appears -- and that buffer, which includes both
the beginning and end of loadhist.el is missing part of the middle,
including the defun for `unload-feature'.

--
    Robert J. Chassell
    bob@rattlesnake.com                         GnuPG Key ID: 004B4AC8
    http://www.rattlesnake.com                  http://www.teak.cc

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-01 11:31 vc-annotate fails Robert J. Chassell
@ 2005-07-01 12:36 ` Kim F. Storm
  2005-07-01 16:58   ` Robert J. Chassell
  0 siblings, 1 reply; 7+ messages in thread
From: Kim F. Storm @ 2005-07-01 12:36 UTC (permalink / raw)
  Cc: emacs-devel

"Robert J. Chassell" <bob@rattlesnake.com> writes:

> Today's GNU Emacs CVS snapshot, Fri, 2005 Jul  1  10:39 UTC
> GNU Emacs 22.0.50.34 (i686-pc-linux-gnu, GTK+ Version 2.6.8)
> started with
>
>     src/emacs -Q -D
>
> The lisp/loadhist.el file is 232 lines long.  However, after visiting
> it, and running `vc-annotate' (C-x v g) to produce
>
>     *Annotate loadhist.el (rev 1.33)*
>
> only a 67 line buffer appears -- and that buffer, which includes both
> the beginning and end of loadhist.el is missing part of the middle,
> including the defun for `unload-feature'.

Sounds like the cvs / ssh problem described in INSTALL.CVS.


-- 
Kim F. Storm <storm@cua.dk> http://www.cua.dk

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-01 12:36 ` Kim F. Storm
@ 2005-07-01 16:58   ` Robert J. Chassell
  2005-07-01 21:31     ` Stefan Monnier
  2005-07-02 12:32     ` Richard M. Stallman
  0 siblings, 2 replies; 7+ messages in thread
From: Robert J. Chassell @ 2005-07-01 16:58 UTC (permalink / raw)


Kim F. Storm wrote

    Sounds like the cvs / ssh problem described in INSTALL.CVS.

Yes.  However, the bug was discussed a long time ago.
vc-annotate (or cvs or ssh) should have been fixed by now.  

-- 
    Robert J. Chassell                         
    bob@rattlesnake.com                         GnuPG Key ID: 004B4AC8
    http://www.rattlesnake.com                  http://www.teak.cc

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-01 16:58   ` Robert J. Chassell
@ 2005-07-01 21:31     ` Stefan Monnier
  2005-07-02 12:32     ` Richard M. Stallman
  1 sibling, 0 replies; 7+ messages in thread
From: Stefan Monnier @ 2005-07-01 21:31 UTC (permalink / raw)
  Cc: emacs-devel

> Kim F. Storm wrote
>     Sounds like the cvs / ssh problem described in INSTALL.CVS.

> Yes.  However, the bug was discussed a long time ago.
> vc-annotate (or cvs or ssh) should have been fixed by now.

IIUC the general "consensus" is that it's a problem in SSH but that the SSH
people don't accept it as a bug.  It can't be fixed elsewhere, only
worked-around.  Last I heard recent development versions of CVS contain
a workaround (similar to the one proposed in etc/PROBLEMS).


        Stefan

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-01 16:58   ` Robert J. Chassell
  2005-07-01 21:31     ` Stefan Monnier
@ 2005-07-02 12:32     ` Richard M. Stallman
  2005-07-05 17:44       ` Kevin Rodgers
  1 sibling, 1 reply; 7+ messages in thread
From: Richard M. Stallman @ 2005-07-02 12:32 UTC (permalink / raw)
  Cc: emacs-devel

    Yes.  However, the bug was discussed a long time ago.
    vc-annotate (or cvs or ssh) should have been fixed by now.  

I am trying to get the bug fixed.  Maybe I am getting close.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-02 12:32     ` Richard M. Stallman
@ 2005-07-05 17:44       ` Kevin Rodgers
  2005-07-06  2:37         ` Richard M. Stallman
  0 siblings, 1 reply; 7+ messages in thread
From: Kevin Rodgers @ 2005-07-05 17:44 UTC (permalink / raw)


Richard M. Stallman wrote:
>     Yes.  However, the bug was discussed a long time ago.
>     vc-annotate (or cvs or ssh) should have been fixed by now.  
> 
> I am trying to get the bug fixed.  Maybe I am getting close.

If the bug is not fixed, should the workaround described in INSTALL.CVS
be implemented within Emacs itself?  That is, the script would be
installed as "cvs_rsh" in exec-directory by `make install` and pcl-cvs
would do (setenv "CVS_RSH" (expand-file-name "cvs_rsh" exec-directory)).

-- 
Kevin Rodgers

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: vc-annotate fails
  2005-07-05 17:44       ` Kevin Rodgers
@ 2005-07-06  2:37         ` Richard M. Stallman
  0 siblings, 0 replies; 7+ messages in thread
From: Richard M. Stallman @ 2005-07-06  2:37 UTC (permalink / raw)
  Cc: emacs-devel

    If the bug is not fixed, should the workaround described in INSTALL.CVS
    be implemented within Emacs itself?  That is, the script would be
    installed as "cvs_rsh" in exec-directory by `make install` and pcl-cvs
    would do (setenv "CVS_RSH" (expand-file-name "cvs_rsh" exec-directory)).

This would be better than nothing, but nowhere near as good as
fixing the bug.  I am continuing to work for that.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-07-06  2:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-01 11:31 vc-annotate fails Robert J. Chassell
2005-07-01 12:36 ` Kim F. Storm
2005-07-01 16:58   ` Robert J. Chassell
2005-07-01 21:31     ` Stefan Monnier
2005-07-02 12:32     ` Richard M. Stallman
2005-07-05 17:44       ` Kevin Rodgers
2005-07-06  2:37         ` Richard M. Stallman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).