Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
POTTIER Francois
menhir
Commits
a21bdd4f
Commit
a21bdd4f
authored
Jun 07, 2017
by
POTTIER Francois
Browse files
Removed an undeclared dependency of MenhirSdk on Unix.
parent
592f7443
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES.md
View file @
a21bdd4f
# Changes
## 2017/06/07
*
Removed an undeclared dependency of MenhirSdk on Unix. (Reported and fixed
by Frédéric Bour.)
## 2017/05/09
*
Menhir now always places OCaml line number directives in the generated
`.ml`
...
...
src/cmly_read.ml
View file @
a21bdd4f
...
...
@@ -37,9 +37,13 @@ let read (ic : in_channel) : grammar =
let
read
(
filename
:
string
)
:
grammar
=
let
ic
=
open_in_bin
filename
in
IO
.
try_finally
(
fun
()
->
read
ic
)
(
fun
()
->
close_in_noerr
ic
)
match
read
ic
with
|
x
->
close_in_noerr
ic
;
x
|
exception
exn
->
close_in_noerr
ic
;
raise
exn
(* ------------------------------------------------------------------------ *)
...
...
src/menhirSdk.mlpack
View file @
a21bdd4f
# This is the list of modules that must go into MenhirSdk.
Keyword
IO
Version
Cmly_format
Cmly_api
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment