Skip to content

Commit 56c7c13

Browse files
Remove unnecessary settings (#553)
1 parent 4eb41d5 commit 56c7c13

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/pull-request.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ concurrency:
1717
permissions:
1818
contents: read
1919

20-
env:
21-
CLASSPATH: ":/usr/lib/opensourcecobol4j/libcobj.jar"
22-
2320
jobs:
2421
check-workflows:
2522
uses: ./.github/workflows/check-workflows.yml

.github/workflows/push.yml

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ concurrency:
1616
permissions:
1717
contents: read
1818

19-
env:
20-
CLASSPATH: ":/usr/lib/opensourcecobol4j/libcobj.jar"
21-
2219
jobs:
2320
check-workflows:
2421
uses: ./.github/workflows/check-workflows.yml

cobj/pplex.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ typedef unsigned int flex_uint32_t;
379379
* to BEGIN to return to the state. The YYSTATE alias is for lex
380380
* compatibility.
381381
*/
382-
#define YY_START (((yy_start) - 1) / 2)
382+
#define YY_START (((yy_start)-1) / 2)
383383
#define YYSTATE YY_START
384384
/* Action number for EOF rule of a given start state. */
385385
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
@@ -2632,8 +2632,8 @@ YY_DECL {
26322632
default:
26332633
YY_FATAL_ERROR("fatal flex scanner internal error--no action found");
26342634
} /* end of action switch */
2635-
} /* end of scanning one token */
2636-
} /* end of user's declarations */
2635+
} /* end of scanning one token */
2636+
} /* end of user's declarations */
26372637
} /* end of yylex */
26382638

26392639
/* yy_get_next_buffer - try to read in a new buffer

0 commit comments

Comments
 (0)