all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Subdir lisp/toolbar - should it be moved into etc/?
@ 2007-11-15  8:53 CHENG Gao
  2007-11-15  9:04 ` Miles Bader
  0 siblings, 1 reply; 9+ messages in thread
From: CHENG Gao @ 2007-11-15  8:53 UTC (permalink / raw)
  To: emacs-devel

This dir contains only images files used by gud. 

-- 
The truth which makes men free is for the most part the truth which men prefer not to hear.

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-15  8:53 Subdir lisp/toolbar - should it be moved into etc/? CHENG Gao
@ 2007-11-15  9:04 ` Miles Bader
  2007-11-15 10:58   ` CHENG Gao
  0 siblings, 1 reply; 9+ messages in thread
From: Miles Bader @ 2007-11-15  9:04 UTC (permalink / raw)
  To: CHENG Gao; +Cc: emacs-devel

CHENG Gao <chenggao@gmail.com> writes:
> This dir contains only images files used by gud. 

That directory was deleted a long time ago...

-Miles

-- 
"Nah, there's no bigger atheist than me.  Well, I take that back.
I'm a cancer screening away from going agnostic and a biopsy away
from full-fledged Christian."  [Adam Carolla]

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-15  9:04 ` Miles Bader
@ 2007-11-15 10:58   ` CHENG Gao
  2007-11-15 11:19     ` Nick Roberts
  0 siblings, 1 reply; 9+ messages in thread
From: CHENG Gao @ 2007-11-15 10:58 UTC (permalink / raw)
  To: emacs-devel

*On Thu, 15 Nov 2007 18:04:23 +0900
* Also sprach Miles Bader <miles.bader@necel.com>:

> CHENG Gao <chenggao@gmail.com> writes:
>> This dir contains only images files used by gud.
>
> That directory was deleted a long time ago...
>
> -Miles

But my latest build of emacs-unicode-2 branch (Under Ubuntu) still
installs this dir. It must be unicode-2 branch specific.

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-15 10:58   ` CHENG Gao
@ 2007-11-15 11:19     ` Nick Roberts
  2007-11-15 11:36       ` CHENG Gao
  0 siblings, 1 reply; 9+ messages in thread
From: Nick Roberts @ 2007-11-15 11:19 UTC (permalink / raw)
  To: CHENG Gao; +Cc: emacs-devel

 > But my latest build of emacs-unicode-2 branch (Under Ubuntu) still
 > installs this dir. It must be unicode-2 branch specific.

Does it go away if you do:

cvs up -P

(Using "cvs up -dP" occasionally is a good idea, to find new directories
too)

-- 
Nick                                           http://www.inet.net.nz/~nickrob

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-15 11:19     ` Nick Roberts
@ 2007-11-15 11:36       ` CHENG Gao
  2007-11-16 10:34         ` Andreas Schwab
  0 siblings, 1 reply; 9+ messages in thread
From: CHENG Gao @ 2007-11-15 11:36 UTC (permalink / raw)
  To: Nick Roberts; +Cc: emacs-devel

Mea culpa.

I use git repo, and did

git checkout -b my-emacs23 origin/emacs-unicode-2

and then I build from my-emacs23 branch. Since "git pull" does not
update this local branch, my source is some stale.

Sorry for bothering. I think I need read more git manual.

On 11/15/07, Nick Roberts <nickrob@snap.net.nz> wrote:
>  > But my latest build of emacs-unicode-2 branch (Under Ubuntu) still
>  > installs this dir. It must be unicode-2 branch specific.
>
> Does it go away if you do:
>
> cvs up -P
>
> (Using "cvs up -dP" occasionally is a good idea, to find new directories
> too)
>
> --
> Nick                                           http://www.inet.net.nz/~nickrob
>

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-15 11:36       ` CHENG Gao
@ 2007-11-16 10:34         ` Andreas Schwab
  2007-11-16 14:20           ` CHENG Gao
  0 siblings, 1 reply; 9+ messages in thread
From: Andreas Schwab @ 2007-11-16 10:34 UTC (permalink / raw)
  To: CHENG Gao; +Cc: Nick Roberts, emacs-devel

"CHENG Gao" <chenggao@gmail.com> writes:

> Mea culpa.
>
> I use git repo, and did
>
> git checkout -b my-emacs23 origin/emacs-unicode-2

git checkout --track -b ....

(or git config branch.autosetupmerge true)

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-16 10:34         ` Andreas Schwab
@ 2007-11-16 14:20           ` CHENG Gao
  2007-11-16 14:54             ` Andreas Schwab
  0 siblings, 1 reply; 9+ messages in thread
From: CHENG Gao @ 2007-11-16 14:20 UTC (permalink / raw)
  To: emacs-devel

*On Fri, 16 Nov 2007 11:34:03 +0100
* Also sprach Andreas Schwab <schwab@suse.de>:

> "CHENG Gao" <chenggao@gmail.com> writes:
>
>> Mea culpa.
>> I use git repo, and did
>> git checkout -b my-emacs23 origin/emacs-unicode-2
>
> git checkout --track -b ....
>
> (or git config branch.autosetupmerge true)
>
> Andreas.

Thanks for the tip.

I removed and recreated local branch from origin/emacs-unicode-2 and
dir toolbar is still in lisp/. So seems emacs-unicode-2 branch in git
repo is not in sync with cvs source.

Anyway it does not matter since I can use cvs source.

-- 
Nosce te ipsum

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-16 14:20           ` CHENG Gao
@ 2007-11-16 14:54             ` Andreas Schwab
  2007-11-16 15:22               ` CHENG Gao
  0 siblings, 1 reply; 9+ messages in thread
From: Andreas Schwab @ 2007-11-16 14:54 UTC (permalink / raw)
  To: CHENG Gao; +Cc: emacs-devel

CHENG Gao <chenggao@gmail.com> writes:

> I removed and recreated local branch from origin/emacs-unicode-2 and
> dir toolbar is still in lisp/. So seems emacs-unicode-2 branch in git
> repo is not in sync with cvs source.

This is due to limitations in cvsps.  It cannot recreate history that is
missing from the RCS files.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

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

* Re: Subdir lisp/toolbar - should it be moved into etc/?
  2007-11-16 14:54             ` Andreas Schwab
@ 2007-11-16 15:22               ` CHENG Gao
  0 siblings, 0 replies; 9+ messages in thread
From: CHENG Gao @ 2007-11-16 15:22 UTC (permalink / raw)
  To: emacs-devel

*On Fri, 16 Nov 2007 15:54:35 +0100
* Also sprach Andreas Schwab <schwab@suse.de>:

> CHENG Gao <chenggao@gmail.com> writes:
>
>> I removed and recreated local branch from origin/emacs-unicode-2 and
>> dir toolbar is still in lisp/. So seems emacs-unicode-2 branch in git
>> repo is not in sync with cvs source.
>
> This is due to limitations in cvsps. It cannot recreate history that is
> missing from the RCS files.
>
> Andreas.

Thanks for the explanation. Now I know I need base all my findings on
cvs source not git repo.

-- 
Numquam minus solus quam cum solus

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

end of thread, other threads:[~2007-11-16 15:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-15  8:53 Subdir lisp/toolbar - should it be moved into etc/? CHENG Gao
2007-11-15  9:04 ` Miles Bader
2007-11-15 10:58   ` CHENG Gao
2007-11-15 11:19     ` Nick Roberts
2007-11-15 11:36       ` CHENG Gao
2007-11-16 10:34         ` Andreas Schwab
2007-11-16 14:20           ` CHENG Gao
2007-11-16 14:54             ` Andreas Schwab
2007-11-16 15:22               ` CHENG Gao

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.