Skip to content

Commit

Permalink
The character U+ff0c "," could be confused with the ASCII character U…
Browse files Browse the repository at this point in the history
…+002c ",", which is more common in source code.
  • Loading branch information
ThomasNS authored and acassis committed Oct 3, 2023
1 parent b8b0ae9 commit 2ffb729
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/arm/src/armv6-m/arm_saveusercontext.S
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ up_saveusercontext:
str r2, [r0, #(4*REG_R2)]
str r3, [r0, #(4*REG_R3)]

/* Save r12r14, pc */
/* Save r12, r14, pc */

mov r1, r12
mov r2, r14
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/src/armv7-m/arm_saveusercontext.S
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

up_saveusercontext:

/* Save r0~r3, r12r14, pc */
/* Save r0~r3, r12, r14, pc */

str r0, [r0, #(4*REG_R0)]
str r1, [r0, #(4*REG_R1)]
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/src/armv8-m/arm_saveusercontext.S
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

up_saveusercontext:

/* Save r0~r3, r12r14, pc */
/* Save r0~r3, r12, r14, pc */

str r0, [r0, #(4*REG_R0)]
str r1, [r0, #(4*REG_R1)]
Expand Down
2 changes: 1 addition & 1 deletion arch/sparc/src/bm3823/bm3823_head.S
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ __start:

set EXTER_REG,%g1
ld [%g1+4], %g2
or %g2, 0x4f, %g2 /*将存储器配置为读改写(区别于写选通)等待后期设置为最大*/
or %g2, 0x4f, %g2 /*将存储器配置为读改写(区别于写选通), 等待后期设置为最大*/
st %g2, [%g1+4]
nop

Expand Down
2 changes: 1 addition & 1 deletion include/langinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
****************************************************************************/

#define NL_ITEM(cat, index) (((cat) << 16) | (index))
#define NL_LOCALE_NAME(cat) NL_ITEM((cat) (0xffff))
#define NL_LOCALE_NAME(cat) NL_ITEM((cat), (0xffff))

#define CODESET NL_ITEM(LC_CTYPE, 0x0e)

Expand Down

0 comments on commit 2ffb729

Please sign in to comment.