@@ -447,7 +447,7 @@ void MCB_parsebreaks(MCExecContext& ctxt, MCStringRef p_input)
447447 {
448448 uindex_t t_length;
449449 MCAutoStringRef t_break;
450- t_found = MCStringFirstIndexOfChar (p_input, ' \n ' , t_last_offset, kMCCompareCaseless , t_return_offset);
450+ t_found = MCStringFirstIndexOfChar (p_input, ' \n ' , t_last_offset, kMCCompareExact , t_return_offset);
451451
452452 if (!t_found) // last line
453453 t_length = t_input_length - t_last_offset;
@@ -618,7 +618,7 @@ void MCB_parsewatches(MCExecContext& ctxt, MCStringRef p_input)
618618 {
619619 uindex_t t_length;
620620 MCAutoStringRef t_watch;
621- t_found = MCStringFirstIndexOfChar (p_input, ' \n ' , t_last_offset, kMCCompareCaseless , t_return_offset);
621+ t_found = MCStringFirstIndexOfChar (p_input, ' \n ' , t_last_offset, kMCCompareExact , t_return_offset);
622622
623623 if (!t_found) // last line
624624 t_length = t_input_length - t_last_offset;
@@ -631,19 +631,19 @@ void MCB_parsewatches(MCExecContext& ctxt, MCStringRef p_input)
631631 MCAutoStringRef t_obj_tail;
632632
633633 if (t_success)
634- t_success = MCStringDivideAtChar (*t_watch, ' ,' , kMCCompareCaseless , &t_obj, &t_obj_tail);
634+ t_success = MCStringDivideAtChar (*t_watch, ' ,' , kMCCompareExact , &t_obj, &t_obj_tail);
635635
636636 MCAutoStringRef t_express;
637637 MCAutoStringRef t_express_tail;
638638
639639 if (t_success)
640- t_success = MCStringDivideAtChar (*t_obj_tail, ' ,' , kMCCompareCaseless , &t_express, &t_express_tail);
640+ t_success = MCStringDivideAtChar (*t_obj_tail, ' ,' , kMCCompareExact , &t_express, &t_express_tail);
641641
642642 MCAutoStringRef t_vname;
643643 MCAutoStringRef t_hname;
644644
645645 if (t_success)
646- t_success = MCStringDivideAtChar (*t_express_tail, ' ,' , kMCCompareCaseless , &t_vname, &t_hname);
646+ t_success = MCStringDivideAtChar (*t_express_tail, ' ,' , kMCCompareExact , &t_vname, &t_hname);
647647
648648 MCObjectPtr t_object;
649649
0 commit comments