mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-27 23:34:06 +00:00
Don't output abbreviations to console when indexing Dsl files.
This commit is contained in:
parent
9980863bd8
commit
68b1e5f262
2
dsl.cc
2
dsl.cc
|
@ -1495,7 +1495,7 @@ vector< sptr< Dictionary::Class > > makeDictionaries(
|
||||||
for( map< string, string >::const_iterator i = abrv.begin();
|
for( map< string, string >::const_iterator i = abrv.begin();
|
||||||
i != abrv.end(); ++i )
|
i != abrv.end(); ++i )
|
||||||
{
|
{
|
||||||
printf( "%s:%s\n", i->first.c_str(), i->second.c_str() );
|
// printf( "%s:%s\n", i->first.c_str(), i->second.c_str() );
|
||||||
|
|
||||||
sz = i->first.size();
|
sz = i->first.size();
|
||||||
chunks.addToBlock( &sz, sizeof( uint32_t ) );
|
chunks.addToBlock( &sz, sizeof( uint32_t ) );
|
||||||
|
|
Loading…
Reference in a new issue