Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 1729

Show
Ignore:
Timestamp:
07/05/10 01:43:54 (14 years ago)
Author:
walter
Message:

detab

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/phobos-1.x/phobos/std/c/locale.d

    r295 r1729  
    6363    /** The number of fractional digits (those after the decimal-point) to 
    6464     * be displayed in an internationally formatted monetary quantity. 
    6565     **/ 
    6666    char int_frac_digits; 
    6767 
    6868    /** The number of fractional digits (those after the decimal-point) to 
    6969     * be displayed in a locally formatted monetary quantity. 
    7070     **/ 
    7171    char frac_digits; 
    7272 
    73     /// 1 if currency_symbol precedes a positive value, 0 if succeeds. 
    74     char p_cs_precedes; 
    75      
    76     /// 1 if a space separates currency_symbol from a positive value. 
    77     char p_sep_by_space; 
    78      
    79     /// 1 if currency_symbol precedes a negative value, 0 if succeeds. 
    80     char n_cs_precedes; 
     73        /// 1 if currency_symbol precedes a positive value, 0 if succeeds. 
     74        char p_cs_precedes; 
    8175 
    82     /// 1 if a space separates currency_symbol from a negative value. 
    83     char n_sep_by_space; 
     76        /// 1 if a space separates currency_symbol from a positive value. 
     77        char p_sep_by_space; 
     78 
     79        /// 1 if currency_symbol precedes a negative value, 0 if succeeds. 
     80        char n_cs_precedes; 
     81 
     82        /// 1 if a space separates currency_symbol from a negative value. 
     83        char n_sep_by_space; 
    8484 
    8585  /* Positive and negative sign positions: 
    8686     0 Parentheses surround the quantity and currency_symbol. 
    8787     1 The sign string precedes the quantity and currency_symbol. 
    8888     2 The sign string follows the quantity and currency_symbol. 
    8989     3 The sign string immediately precedes the currency_symbol. 
    9090     4 The sign string immediately follows the currency_symbol.  */ 
    9191  char p_sign_posn; 
    9292  char n_sign_posn; 
    9393   
  • branches/phobos-1.x/phobos/win32.mak

    r1701 r1729  
    934934clean: 
    935935    del $(OBJS) 
    936936    del $(DOCS) 
    937937    del phobos.json 
    938938    del phobos.lib 
    939939 
    940940cleanhtml: 
    941941    del $(DOCS) 
    942942 
    943943detab: 
    944     detab $(SRCS) $(SRC_INT) 
     944    detab $(SRC) \ 
     945    $(SRC_STD) $(SRC_STD_C) $(SRC_TI) $(SRC_INT) $(SRC_STD_WIN) \ 
     946    $(SRC_STDLINUX) $(SRC_ETC) $(SRC_ETC_C) $(SRC_ZLIB) $(SRC_GC) 
    945947 
    946948install: 
    947949    $(CP) phobos.lib gcstub.obj $(DIR)\windows\lib 
    948950    $(CP) $(MAKEFILES) phoboslicense.txt minit.obj std.ddoc $(DIR)\src\phobos 
    949951    $(CP) $(SRC) $(DIR)\src\phobos 
    950952    $(CP) $(SRC_STD) $(DIR)\src\phobos\std 
    951953    $(CP) $(SRC_STD_C) $(DIR)\src\phobos\std\c 
    952954    $(CP) $(SRC_TI) $(DIR)\src\phobos\std\typeinfo 
    953955    $(CP) $(SRC_INT) $(DIR)\src\phobos\internal 
    954956    $(CP) $(SRC_STD_WIN) $(DIR)\src\phobos\std\windows