From 36def9125c9adf4049a18105d48715ac8606e1ec Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 27 Oct 2016 19:47:07 -0500 Subject: rtems-docs: Fix many unnecessary back slashes --- porting/priority_bitmap.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'porting/priority_bitmap.rst') diff --git a/porting/priority_bitmap.rst b/porting/priority_bitmap.rst index d546f8f..4ce89cb 100644 --- a/porting/priority_bitmap.rst +++ b/porting/priority_bitmap.rst @@ -56,9 +56,9 @@ The _CPU_Bitfield_Find_first_bit routine sets _output to the bit number of the first bit set in ``_value``. ``_value`` is of CPU dependent type``Priority_bit_map_Control``. A stub version of this routine is as follows: .. code:: c - #define _CPU_Bitfield_Find_first_bit( _value, _output ) \\ - { \\ - (_output) = 0; /* do something to prevent warnings \*/ \\ + #define _CPU_Bitfield_Find_first_bit( _value, _output ) \ + { \ + (_output) = 0; /* do something to prevent warnings */ \ } There are a number of variables in using a "find first bit" type @@ -129,9 +129,9 @@ something like this stub example did: .. code:: c #if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE) - #define _CPU_Bitfield_Find_first_bit( _value, _output ) \\ - { \\ - (_output) = 0; /* do something to prevent warnings \*/ \\ + #define _CPU_Bitfield_Find_first_bit( _value, _output ) \ + { \ + (_output) = 0; /* do something to prevent warnings */ \ } #endif -- cgit v1.2.3