Changeset 1796
- Timestamp:
 - Jan 28, 2005, 8:19:00 PM (21 years ago)
 - Location:
 - trunk/src/emx
 - Files:
 - 
      
- 3 edited
 
- 
          
  include/locale.h (modified) (2 diffs, 1 prop)
 - 
          
  src/lib/locale/locale_lconv.c (modified) (1 diff, 1 prop)
 - 
          
  src/lib/locale/setlocale.c (modified) (3 diffs, 1 prop)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/emx/include/locale.h
- 
Property       cvs2svn:cvs-rev
 changed from       
1.4to1.5 
r1795 r1796 64 64 char p_sign_posn; /** positioning of non-negative monetary sign */ 65 65 char n_sign_posn; /** positioning of negative monetary sign */ 66 #if 0 /* bird: we don't have this information (it's C99 stuff btw). */67 66 char int_p_cs_precedes; 68 67 char int_n_cs_precedes; … … 71 70 char int_p_sign_posn; 72 71 char int_n_sign_posn; 73 #endif74 72 }; 75 73  - 
Property       cvs2svn:cvs-rev
 changed from       
 - 
      
trunk/src/emx/src/lib/locale/locale_lconv.c
- 
Property       cvs2svn:cvs-rev
 changed from       
1.5to1.6 
r1795 r1796 56 56 CHAR_MAX, //int_n_sep_by_space; 57 57 CHAR_MAX, //int_p_sign_posn; 58 CHAR_MAX, //int_n_sign_posn; 59 -1 58 CHAR_MAX //int_n_sign_posn; 60 59 }, 61 60  - 
Property       cvs2svn:cvs-rev
 changed from       
 - 
      
trunk/src/emx/src/lib/locale/setlocale.c
- 
Property       cvs2svn:cvs-rev
 changed from       
1.14to1.15 
r1795 r1796 970 970 pLconv->s.p_sign_posn = pULconv->p_sign_posn; 971 971 pLconv->s.n_sign_posn = pULconv->n_sign_posn; 972 /* we fake the international variants here. */ 973 pLconv->s.int_p_cs_precedes = pULconv->p_cs_precedes; 974 pLconv->s.int_n_cs_precedes = pULconv->n_cs_precedes; 975 pLconv->s.int_p_sep_by_space= pULconv->p_sep_by_space; 976 pLconv->s.int_n_sep_by_space= pULconv->n_sep_by_space; 977 pLconv->s.int_p_sign_posn = pULconv->p_sign_posn; 978 pLconv->s.int_n_sign_posn = pULconv->n_sign_posn; 979 972 980 #undef CONVERT_UCS 973 981 … … 997 1005 pLconv->s.p_sign_posn = -1; 998 1006 pLconv->s.n_sign_posn = -1; 1007 pLconv->s.int_p_cs_precedes = -1; 1008 pLconv->s.int_n_cs_precedes = -1; 1009 pLconv->s.int_p_sep_by_space= -1; 1010 pLconv->s.int_n_sep_by_space= -1; 1011 pLconv->s.int_p_sign_posn = -1; 1012 pLconv->s.int_n_sign_posn = -1; 999 1013 1000 1014 return 0; … … 1559 1573 __libc_gLocaleLconv.s.p_sign_posn = pTemp->Lconv.s.p_sign_posn; 1560 1574 __libc_gLocaleLconv.s.n_sign_posn = pTemp->Lconv.s.n_sign_posn; 1575 __libc_gLocaleLconv.s.int_p_cs_precedes = pTemp->Lconv.s.int_p_cs_precedes; 1576 __libc_gLocaleLconv.s.int_n_cs_precedes = pTemp->Lconv.s.int_n_cs_precedes; 1577 __libc_gLocaleLconv.s.int_p_sep_by_space = pTemp->Lconv.s.int_p_sep_by_space; 1578 __libc_gLocaleLconv.s.int_n_sep_by_space = pTemp->Lconv.s.int_n_sep_by_space; 1579 __libc_gLocaleLconv.s.int_p_sign_posn = pTemp->Lconv.s.int_p_sign_posn; 1580 __libc_gLocaleLconv.s.int_n_sign_posn = pTemp->Lconv.s.int_n_sign_posn; 1561 1581 __libc_gLocaleLconv.pszCrncyStr = pTemp->Lconv.pszCrncyStr; 1562 1582 pTemp->afProcessed[LC_MONETARY + 1] = 0;  - 
Property       cvs2svn:cvs-rev
 changed from       
 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  