Mercurial > hg > xemacs-beta
comparison src/md5.c @ 263:727739f917cb r20-5b30
Import from CVS: tag r20-5b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:24:41 +0200 |
parents | 11cf20601dec |
children | 6330739388db |
comparison
equal
deleted
inserted
replaced
262:9d8607af9e13 | 263:727739f917cb |
---|---|
449 } | 449 } |
450 else | 450 else |
451 { | 451 { |
452 coding_system = Ffind_coding_system (coding); | 452 coding_system = Ffind_coding_system (coding); |
453 if (NILP(coding_system)) | 453 if (NILP(coding_system)) |
454 if (NILP(error_me_not)) | 454 { |
455 signal_simple_error("No such coding system", coding); | 455 if (NILP(error_me_not)) |
456 else | 456 signal_simple_error("No such coding system", coding); |
457 coding_system = Fget_coding_system(Qbinary); /* default to binary */ | 457 else |
458 coding_system = Fget_coding_system(Qbinary); /* default to binary */ | |
459 } | |
458 } | 460 } |
459 #endif | 461 #endif |
460 | 462 |
461 /* setup the out stream */ | 463 /* setup the out stream */ |
462 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr); | 464 outstream = make_dynarr_output_stream((unsigned_char_dynarr *)conversion_out_dynarr); |