public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] documentation fix
@ 2005-10-02  1:16 Arnold Metselaar
  2005-10-03  3:07 ` Hans-Peter Nilsson
  0 siblings, 1 reply; 8+ messages in thread
From: Arnold Metselaar @ 2005-10-02  1:16 UTC (permalink / raw)
  To: binutils

Here is a small fix for gas/doc/as.texinfo. I can not apply it 
myself.
Regards, Arnold

* doc/as.texinfo (infix operators): '<' and '>' are not shift 
operators.

Index: as.texinfo
===================================================================
RCS file: /cvs/src/src/gas/doc/as.texinfo,v
retrieving revision 1.130
diff -u -r1.130 as.texinfo
--- as.texinfo  30 Sep 2005 15:05:07 -0000      1.130
+++ as.texinfo  1 Oct 2005 19:54:03 -0000
@@ -3567,11 +3567,9 @@
 @item %
 @dfn{Remainder}.

-@item <
 @itemx <<
 @dfn{Shift Left}.  Same as the C operator @samp{<<}.

-@item >
 @itemx >>
 @dfn{Shift Right}.  Same as the C operator @samp{>>}.
 @end table

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

* Re: [PATCH] documentation fix
  2005-10-02  1:16 [PATCH] documentation fix Arnold Metselaar
@ 2005-10-03  3:07 ` Hans-Peter Nilsson
  2005-10-03  8:04   ` Arnold Metselaar
  0 siblings, 1 reply; 8+ messages in thread
From: Hans-Peter Nilsson @ 2005-10-03  3:07 UTC (permalink / raw)
  To: Arnold Metselaar; +Cc: binutils

On Sat, 1 Oct 2005, Arnold Metselaar wrote:

> * doc/as.texinfo (infix operators): '<' and '>' are not shift
> operators.
>
> Index: as.texinfo
> ===================================================================
> RCS file: /cvs/src/src/gas/doc/as.texinfo,v
> retrieving revision 1.130
> diff -u -r1.130 as.texinfo
> --- as.texinfo  30 Sep 2005 15:05:07 -0000      1.130
> +++ as.texinfo  1 Oct 2005 19:54:03 -0000
> @@ -3567,11 +3567,9 @@
>  @item %
>  @dfn{Remainder}.
>
> -@item <
>  @itemx <<
>  @dfn{Shift Left}.  Same as the C operator @samp{<<}.
>
> -@item >
>  @itemx >>
>  @dfn{Shift Right}.  Same as the C operator @samp{>>}.
>  @end table

Heh.  And just in case nobody else notices it: need to change
the line after the deleted ones into "@item".

brgds, H-P

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

* Re: [PATCH] documentation fix
  2005-10-03  3:07 ` Hans-Peter Nilsson
@ 2005-10-03  8:04   ` Arnold Metselaar
  2005-10-03  9:41     ` Nick Clifton
  0 siblings, 1 reply; 8+ messages in thread
From: Arnold Metselaar @ 2005-10-03  8:04 UTC (permalink / raw)
  To: binutils; +Cc: Hans-Peter Nilsson

Op maandag 03 oktober 2005 05:07, schreef Hans-Peter Nilsson:
....
> Heh.  And just in case nobody else notices it: need to change
> the line after the deleted ones into "@item".
>
> brgds, H-P

There are more of these @item vs @itemx errors in this file. 
Here is corrected and extended patch, which I can not apply myself:

* doc/as.texinfo (infix operators): '<' and '>' are not shift, 

Index: doc/as.texinfo
===================================================================
RCS file: /cvs/src/src/gas/doc/as.texinfo,v
retrieving revision 1.130
diff -u -r1.130 as.texinfo
--- doc/as.texinfo      30 Sep 2005 15:05:07 -0000      1.130
+++ doc/as.texinfo      3 Oct 2005 07:49:46 -0000
@@ -3567,12 +3567,10 @@
 @item %
 @dfn{Remainder}.

-@item <
-@itemx <<
+@item <<
 @dfn{Shift Left}.  Same as the C operator @samp{<<}.

-@item >
-@itemx >>
+@item >>
 @dfn{Shift Right}.  Same as the C operator @samp{>>}.
 @end table

@@ -3624,11 +3622,11 @@
 @dfn{Is Not Equal To}
 @item <
 @dfn{Is Less Than}
-@itemx >
+@item >
 @dfn{Is Greater Than}
-@itemx >=
+@item >=
 @dfn{Is Greater Than Or Equal To}
-@itemx <=
+@item <=
 @dfn{Is Less Than Or Equal To}

 The comparison operators can be used as infix operators.  A true results has a

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

* Re: [PATCH] documentation fix
  2005-10-03  8:04   ` Arnold Metselaar
@ 2005-10-03  9:41     ` Nick Clifton
  0 siblings, 0 replies; 8+ messages in thread
From: Nick Clifton @ 2005-10-03  9:41 UTC (permalink / raw)
  To: Arnold Metselaar; +Cc: binutils, Hans-Peter Nilsson

Hi Arnold,

> There are more of these @item vs @itemx errors in this file. 
> Here is corrected and extended patch, which I can not apply myself:
> 
> * doc/as.texinfo (infix operators): '<' and '>' are not shift, 

Patch approved and applied.

Cheers
   Nick


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

* Re: [PATCH] documentation fix.
  2009-09-25 15:57   ` Nick Hudson
@ 2009-09-25 16:00     ` Tristan Gingold
  0 siblings, 0 replies; 8+ messages in thread
From: Tristan Gingold @ 2009-09-25 16:00 UTC (permalink / raw)
  To: Nick Hudson; +Cc: Nick Clifton, binutils


On Sep 25, 2009, at 5:57 PM, Nick Hudson wrote:

> On Friday 25 September 2009 16:11:07 Nick Clifton wrote:
>> Hi Nick,
>>
>>> OK to commit?
>>
>> Approved - please apply.
>
> Done.
>
> Sorry, should have asked if it's OK for the 2.20 branch as well.

Sure, go ahead.

Tristan.

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

* Re: [PATCH] documentation fix.
  2009-09-25 15:11 ` Nick Clifton
@ 2009-09-25 15:57   ` Nick Hudson
  2009-09-25 16:00     ` Tristan Gingold
  0 siblings, 1 reply; 8+ messages in thread
From: Nick Hudson @ 2009-09-25 15:57 UTC (permalink / raw)
  To: Nick Clifton; +Cc: binutils

On Friday 25 September 2009 16:11:07 Nick Clifton wrote:
> Hi Nick,
>
> > OK to commit?
>
> Approved - please apply.

Done.

Sorry, should have asked if it's OK for the 2.20 branch as well.

Thanks,
Nick

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

* Re: [PATCH] documentation fix.
  2009-09-24  8:14 Nick Hudson
@ 2009-09-25 15:11 ` Nick Clifton
  2009-09-25 15:57   ` Nick Hudson
  0 siblings, 1 reply; 8+ messages in thread
From: Nick Clifton @ 2009-09-25 15:11 UTC (permalink / raw)
  To: Nick Hudson; +Cc: binutils

Hi Nick,

> OK to commit?

Approved - please apply.

Cheers
   Nick


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

* [PATCH] documentation fix.
@ 2009-09-24  8:14 Nick Hudson
  2009-09-25 15:11 ` Nick Clifton
  0 siblings, 1 reply; 8+ messages in thread
From: Nick Hudson @ 2009-09-24  8:14 UTC (permalink / raw)
  To: binutils

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

OK to commit?

Thanks,
Nick

[-- Attachment #2: c-mips.texi.diff --]
[-- Type: text/x-diff, Size: 808 bytes --]

Index: gas/doc/c-mips.texi
===================================================================
RCS file: /cvs/src/src/gas/doc/c-mips.texi,v
retrieving revision 1.52
diff -u -p -u -r1.52 c-mips.texi
--- gas/doc/c-mips.texi	2 Sep 2009 07:24:21 -0000	1.52
+++ gas/doc/c-mips.texi	24 Sep 2009 07:51:46 -0000
@@ -643,8 +643,8 @@ instructions are accepted) or the comman
 (@samp{-msoft-float} and @samp{-mhard-float}).
 
 @cindex Disable single-precision floating-point operations
-@kindex @code{.set softfloat}
-@kindex @code{.set hardfloat}
+@kindex @code{.set singlefloat}
+@kindex @code{.set doublefloat}
 The directives @code{.set singlefloat} and @code{.set doublefloat}
 provide finer control of disabling and enabling double-precision
 float-point operations.  These directives always override the default

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

end of thread, other threads:[~2009-09-25 16:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-10-02  1:16 [PATCH] documentation fix Arnold Metselaar
2005-10-03  3:07 ` Hans-Peter Nilsson
2005-10-03  8:04   ` Arnold Metselaar
2005-10-03  9:41     ` Nick Clifton
2009-09-24  8:14 Nick Hudson
2009-09-25 15:11 ` Nick Clifton
2009-09-25 15:57   ` Nick Hudson
2009-09-25 16:00     ` Tristan Gingold

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).