Changeset 7d25f44 for libcfa


Ignore:
Timestamp:
Jun 29, 2023, 12:12:01 PM (12 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
85a3806
Parents:
f5d9c37
Message:

update files from old separator manipulator names to new names

Location:
libcfa/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/containers/string_res.cfa

    rf5d9c37 r7d25f44  
    99// Author           : Michael L. Brooks
    1010// Created On       : Fri Sep 03 11:00:00 2021
    11 // Last Modified By : Michael L. Brooks
    12 // Last Modified On : Fri Sep 03 11:00:00 2021
    13 // Update Count     : 1
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Thu Jun 29 09:29:06 2023
     13// Update Count     : 2
    1414//
    1515
     
    204204        out | s[i];
    205205    }
    206     out | sep;
     206    out | sepVal;
    207207    // Re-apply newlines after done, for chaining version
    208208    if (anl) nlOn(out);
  • libcfa/src/gmp.hfa

    rf5d9c37 r7d25f44  
    1010// Created On       : Tue Apr 19 08:43:43 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Apr 20 20:59:21 2021
    13 // Update Count     : 32
     12// Last Modified On : Thu Jun 29 09:43:30 2023
     13// Update Count     : 33
    1414//
    1515
     
    265265                        if ( sepPrt$( os ) ) fmt( os, "%s", sepGetCur$( os ) );
    266266                        gmp_printf( "%Zd", mp.mpz );
    267                         sepOn( os );
     267                        sep( os );
    268268                        return os;
    269269                } // ?|?
  • libcfa/src/parseconfig.cfa

    rf5d9c37 r7d25f44  
    2929// TODO: use string interface when it's ready (and implement exception msg protocol)
    3030[ void ] msg( * Missing_Config_Entries ex ) {
    31         serr | "The config file is missing " | ex->num_missing | "entr" | sepOff | (ex->num_missing == 1 ? "y." : "ies.");
     31        serr | "The config file is missing " | ex->num_missing | "entr" | nosep | (ex->num_missing == 1 ? "y." : "ies.");
    3232} // msg
    3333
Note: See TracChangeset for help on using the changeset viewer.