Skip to content

Commit 5bb39ff

Browse files
committed
small tidying
1 parent e830092 commit 5bb39ff

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Engine/linevent.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -337,13 +337,13 @@ static void sensLine(CSOUND *csound, void *userData)
337337
// csound->ErrorMsg(csound, Str("unmatched quotes"));
338338
// goto Lerr;
339339
//}
340-
340+
341341
if(c == '\\') {
342-
cp++;
343-
if(*cp == '"') c = *cp; /* if it is a double quote */
344-
/* otherwise we ignore it */
345-
else cp--;
346-
}
342+
cp++;
343+
if(*cp == '"') c = *cp; /* if it is a double quote */
344+
/* otherwise we ignore it */
345+
else cp--;
346+
}
347347
sstrp[n++] = c; /* save in private strbuf */
348348

349349
if (UNLIKELY((sstrp-e.strarg)+n >= strsiz-10)) {

Top/argdecode.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -350,10 +350,10 @@ CS_NORETURN void dieu(CSOUND *csound, char *s, ...)
350350
csound->ErrMsgV(csound, Str("Csound Command ERROR: "), s, args);
351351
va_end(args);
352352
//***FIXME This code makes no sense
353-
if (csound->info_message_request == 0) {
354-
csound->info_message_request = 0;
355-
csound->LongJmp(csound, 1);
356-
}
353+
/* if (csound->info_message_request == 0) { */
354+
/* csound->info_message_request = 0; */
355+
/* csound->LongJmp(csound, 1); */
356+
/* } */
357357
//Added longjump -- JPff
358358
csound->LongJmp(csound, 1);
359359
}

Top/csound.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2323,7 +2323,7 @@ PUBLIC const char *csoundGetOutputName(CSOUND *csound)
23232323
{
23242324
return (const char*) csound->oparms_.outfilename;
23252325
}
2326-
2326+
23272327
PUBLIC const char *csoundGetInputName(CSOUND *csound)
23282328
{
23292329
return (const char*) csound->oparms_.infilename;

0 commit comments

Comments
 (0)