Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Re: cvs-head "make install" get error with doc
       [not found] <daef60380909210004v50e5eafcl26e180d0e8b73482@mail.gmail.com>
@ 2009-09-21  7:23 ` Jie Zhang
  2009-09-21  7:31   ` Jie Zhang
       [not found]   ` <4AB72BD8.5020606__48069.4626960487$1253518331$gmane$org@analog.com>
  0 siblings, 2 replies; 9+ messages in thread
From: Jie Zhang @ 2009-09-21  7:23 UTC (permalink / raw)
  To: Hui Zhu; +Cc: gdb, Eli Zaretskii, gdb-patches

[-- Attachment #1: Type: text/plain, Size: 708 bytes --]

Hui Zhu wrote:
> make[3]: Entering directory `/home/teawater/gdb/bgdb/gdb'
> make[4]: Entering directory `/home/teawater/gdb/bgdb/gdb/doc'
> makeinfo --split-size=5000000 --split-size=5000000 -I
> ../../../src/gdb/doc/../../readline/doc -I ../../../src/gdb/doc/../mi
> -I ../../../src/gdb/doc \
> 		-o gdb.info ../../../src/gdb/doc/gdb.texinfo
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.

This patch should fix it.


Jie


[-- Attachment #2: gdb-fix-doc.diff --]
[-- Type: text/x-patch, Size: 619 bytes --]


	* doc/gdb.texinfo: Escape "{" and "}".

Index: doc/gdb.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v
retrieving revision 1.627
diff -u -r1.627 gdb.texinfo
--- doc/gdb.texinfo	19 Sep 2009 10:46:20 -0000	1.627
+++ doc/gdb.texinfo	21 Sep 2009 07:18:00 -0000
@@ -23361,7 +23361,7 @@
 @smallexample
 (gdb)
 -stack-list-variables --thread 1 --frame 0 --all-values
-^done,variables=[{name="x",value="11"},{name="s",value="{a = 1, b = 2}"}]
+^done,variables=[@{name="x",value="11"@},@{name="s",value="@{a = 1, b = 2@}"@}]
 (gdb)
 @end smallexample
 

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

* Re: cvs-head "make install" get error with doc
  2009-09-21  7:23 ` cvs-head "make install" get error with doc Jie Zhang
@ 2009-09-21  7:31   ` Jie Zhang
       [not found]     ` <h97ov6$i7q$1@ger.gmane.org>
       [not found]   ` <4AB72BD8.5020606__48069.4626960487$1253518331$gmane$org@analog.com>
  1 sibling, 1 reply; 9+ messages in thread
From: Jie Zhang @ 2009-09-21  7:31 UTC (permalink / raw)
  To: gdb-patches; +Cc: Hui Zhu, gdb, Eli Zaretskii

Jie Zhang wrote:
> Hui Zhu wrote:
>> make[3]: Entering directory `/home/teawater/gdb/bgdb/gdb'
>> make[4]: Entering directory `/home/teawater/gdb/bgdb/gdb/doc'
>> makeinfo --split-size=5000000 --split-size=5000000 -I
>> ../../../src/gdb/doc/../../readline/doc -I ../../../src/gdb/doc/../mi
>> -I ../../../src/gdb/doc \
>>         -o gdb.info ../../../src/gdb/doc/gdb.texinfo
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
> 
> This patch should fix it.
> 
Forgot to ask. May I install it?

Regards,
Jie


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

* Re: cvs-head "make install" get error with doc
       [not found]     ` <h97ov6$i7q$1@ger.gmane.org>
@ 2009-09-21 12:51       ` Jie Zhang
  2009-09-22  2:19         ` Hui Zhu
  0 siblings, 1 reply; 9+ messages in thread
From: Jie Zhang @ 2009-09-21 12:51 UTC (permalink / raw)
  To: Vladimir Prus; +Cc: gdb, gdb-patches

Vladimir Prus wrote:
> Jie Zhang wrote:
> 
>> Jie Zhang wrote:
>>> Hui Zhu wrote:
>>>> make[3]: Entering directory `/home/teawater/gdb/bgdb/gdb'
>>>> make[4]: Entering directory `/home/teawater/gdb/bgdb/gdb/doc'
>>>> makeinfo --split-size=5000000 --split-size=5000000 -I
>>>> ../../../src/gdb/doc/../../readline/doc -I ../../../src/gdb/doc/../mi
>>>> -I ../../../src/gdb/doc \
>>>>         -o gdb.info ../../../src/gdb/doc/gdb.texinfo
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>> This patch should fix it.
>>>
>> Forgot to ask. May I install it?
> 
> Yes, please. I don't really understand what happened -- I
> surely did build, and examined, the documentation before checking
> the patch in.
> 
Thanks. Committed.


Jie


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

* Re: cvs-head "make install" get error with doc
       [not found]   ` <4AB72BD8.5020606__48069.4626960487$1253518331$gmane$org@analog.com>
@ 2009-09-21 16:56     ` Tom Tromey
  2009-09-21 17:28       ` Jie Zhang
       [not found]       ` <6f48278f0909211028x66561a09wd74cebc5f95f832d__25635.7262297117$1253554143$gmane$org@mail.gmail.com>
  0 siblings, 2 replies; 9+ messages in thread
From: Tom Tromey @ 2009-09-21 16:56 UTC (permalink / raw)
  To: Jie Zhang; +Cc: gdb-patches, Hui Zhu, gdb, Eli Zaretskii

>>>>> "Jie" == Jie Zhang <jie.zhang@analog.com> writes:

>> This patch should fix it.

Jie> Forgot to ask. May I install it?

Just for the record, this sort of patch falls under the obvious rule and
doesn't need permission.

Tom


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

* Re: cvs-head "make install" get error with doc
  2009-09-21 16:56     ` Tom Tromey
@ 2009-09-21 17:28       ` Jie Zhang
       [not found]       ` <6f48278f0909211028x66561a09wd74cebc5f95f832d__25635.7262297117$1253554143$gmane$org@mail.gmail.com>
  1 sibling, 0 replies; 9+ messages in thread
From: Jie Zhang @ 2009-09-21 17:28 UTC (permalink / raw)
  To: tromey; +Cc: Jie Zhang, gdb-patches, Hui Zhu, gdb, Eli Zaretskii

Tom,

On Tue, Sep 22, 2009 at 12:56 AM, Tom Tromey <tromey@redhat.com> wrote:
>>>>>> "Jie" == Jie Zhang <jie.zhang@analog.com> writes:
>
>>> This patch should fix it.
>
> Jie> Forgot to ask. May I install it?
>
> Just for the record, this sort of patch falls under the obvious rule and
> doesn't need permission.
>
See.

And should or can I add myself to GDB MAINTAINERS under "Write After
Approval". My employer's copyright assignment should have already
covered me.

Regards,
Jie


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

* Re: cvs-head "make install" get error with doc
       [not found]       ` <6f48278f0909211028x66561a09wd74cebc5f95f832d__25635.7262297117$1253554143$gmane$org@mail.gmail.com>
@ 2009-09-21 19:24         ` Tom Tromey
  2009-09-22  3:27           ` [commit] Add myself to MAINTAINERS under Write After Approval (was Re: cvs-head "make install" get error with doc) Jie Zhang
  0 siblings, 1 reply; 9+ messages in thread
From: Tom Tromey @ 2009-09-21 19:24 UTC (permalink / raw)
  To: Jie Zhang; +Cc: Jie Zhang, gdb-patches, Hui Zhu, gdb, Eli Zaretskii

>>>>> "Jie" == Jie Zhang <jzhang918@gmail.com> writes:

Jie> And should or can I add myself to GDB MAINTAINERS under "Write After
Jie> Approval". My employer's copyright assignment should have already
Jie> covered me.

Yes, if you have write access, you should be mentioned there.

Tom


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

* Re: cvs-head "make install" get error with doc
  2009-09-21 12:51       ` Jie Zhang
@ 2009-09-22  2:19         ` Hui Zhu
  0 siblings, 0 replies; 9+ messages in thread
From: Hui Zhu @ 2009-09-22  2:19 UTC (permalink / raw)
  To: Jie Zhang; +Cc: Vladimir Prus, gdb, gdb-patches

It works OK with me now.  Thanks a lot, Jie.

Hui

On Mon, Sep 21, 2009 at 20:50, Jie Zhang <jie.zhang@analog.com> wrote:
> Vladimir Prus wrote:
>>
>> Jie Zhang wrote:
>>
>>> Jie Zhang wrote:
>>>>
>>>> Hui Zhu wrote:
>>>>>
>>>>> make[3]: Entering directory `/home/teawater/gdb/bgdb/gdb'
>>>>> make[4]: Entering directory `/home/teawater/gdb/bgdb/gdb/doc'
>>>>> makeinfo --split-size=5000000 --split-size=5000000 -I
>>>>> ../../../src/gdb/doc/../../readline/doc -I ../../../src/gdb/doc/../mi
>>>>> -I ../../../src/gdb/doc \
>>>>>        -o gdb.info ../../../src/gdb/doc/gdb.texinfo
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced {.
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>>>> ../../../src/gdb/doc/gdb.texinfo:23364: Misplaced }.
>>>>
>>>> This patch should fix it.
>>>>
>>> Forgot to ask. May I install it?
>>
>> Yes, please. I don't really understand what happened -- I
>> surely did build, and examined, the documentation before checking
>> the patch in.
>>
> Thanks. Committed.
>
>
> Jie
>


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

* [commit] Add myself to MAINTAINERS under Write After Approval (was  Re: cvs-head "make install" get error with doc)
  2009-09-21 19:24         ` Tom Tromey
@ 2009-09-22  3:27           ` Jie Zhang
  2009-09-22  4:01             ` Hui Zhu
  0 siblings, 1 reply; 9+ messages in thread
From: Jie Zhang @ 2009-09-22  3:27 UTC (permalink / raw)
  To: tromey; +Cc: Jie Zhang, gdb-patches, Hui Zhu, gdb, Eli Zaretskii

[-- Attachment #1: Type: text/plain, Size: 373 bytes --]

Tom Tromey wrote:
>>>>>> "Jie" == Jie Zhang <jzhang918@gmail.com> writes:
> 
> Jie> And should or can I add myself to GDB MAINTAINERS under "Write After
> Jie> Approval". My employer's copyright assignment should have already
> Jie> covered me.
> 
> Yes, if you have write access, you should be mentioned there.
> 
Thanks. I have added myself with the attached patch.

Jie

[-- Attachment #2: gdb-add-jie-zhang-to-MAINTAINERS.diff --]
[-- Type: text/x-patch, Size: 613 bytes --]


	* MAINTAINERS: Add myself under Write After Approval.

Index: MAINTAINERS
===================================================================
RCS file: /cvs/src/src/gdb/MAINTAINERS,v
retrieving revision 1.423
diff -u -r1.423 MAINTAINERS
--- MAINTAINERS	6 Aug 2009 10:28:37 -0000	1.423
+++ MAINTAINERS	22 Sep 2009 03:17:58 -0000
@@ -608,6 +608,7 @@
 Jim Wilson					wilson@tuliptree.org
 Elena Zannoni					elena.zannoni@oracle.com
 Eli Zaretskii					eliz@gnu.org
+Jie Zhang					jie.zhang@analog.com
 Wu Zhou						woodzltc@cn.ibm.com
 Yoshinori Sato					ysato@users.sourceforge.jp
 Hui Zhu						teawater@gmail.com

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

* Re: [commit] Add myself to MAINTAINERS under Write After Approval   (was Re: cvs-head "make install" get error with doc)
  2009-09-22  3:27           ` [commit] Add myself to MAINTAINERS under Write After Approval (was Re: cvs-head "make install" get error with doc) Jie Zhang
@ 2009-09-22  4:01             ` Hui Zhu
  0 siblings, 0 replies; 9+ messages in thread
From: Hui Zhu @ 2009-09-22  4:01 UTC (permalink / raw)
  To: Jie Zhang; +Cc: tromey, Jie Zhang, gdb-patches, gdb, Eli Zaretskii

Welcome to the club.

Hui

On Tue, Sep 22, 2009 at 11:27, Jie Zhang <jie.zhang@analog.com> wrote:
> Tom Tromey wrote:
>>>>>>>
>>>>>>> "Jie" == Jie Zhang <jzhang918@gmail.com> writes:
>>
>> Jie> And should or can I add myself to GDB MAINTAINERS under "Write After
>> Jie> Approval". My employer's copyright assignment should have already
>> Jie> covered me.
>>
>> Yes, if you have write access, you should be mentioned there.
>>
> Thanks. I have added myself with the attached patch.
>
> Jie
>


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

end of thread, other threads:[~2009-09-22  4:01 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <daef60380909210004v50e5eafcl26e180d0e8b73482@mail.gmail.com>
2009-09-21  7:23 ` cvs-head "make install" get error with doc Jie Zhang
2009-09-21  7:31   ` Jie Zhang
     [not found]     ` <h97ov6$i7q$1@ger.gmane.org>
2009-09-21 12:51       ` Jie Zhang
2009-09-22  2:19         ` Hui Zhu
     [not found]   ` <4AB72BD8.5020606__48069.4626960487$1253518331$gmane$org@analog.com>
2009-09-21 16:56     ` Tom Tromey
2009-09-21 17:28       ` Jie Zhang
     [not found]       ` <6f48278f0909211028x66561a09wd74cebc5f95f832d__25635.7262297117$1253554143$gmane$org@mail.gmail.com>
2009-09-21 19:24         ` Tom Tromey
2009-09-22  3:27           ` [commit] Add myself to MAINTAINERS under Write After Approval (was Re: cvs-head "make install" get error with doc) Jie Zhang
2009-09-22  4:01             ` Hui Zhu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox