Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
f985ef63
Commit
f985ef63
authored
3 years ago
by
Virgile Prevosto
Browse files
Options
Downloads
Patches
Plain Diff
[helpers] check_newline and isutf8 assume the names they are given aren't quoted
parent
2d763b68
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+4
-4
4 additions, 4 deletions
Makefile
bin/check_newlines.ml
+0
-19
0 additions, 19 deletions
bin/check_newlines.ml
bin/isutf8.ml
+0
-19
0 additions, 19 deletions
bin/isutf8.ml
with
4 additions
and
42 deletions
Makefile
+
4
−
4
View file @
f985ef63
...
...
@@ -2151,9 +2151,9 @@ CHECK_NEWLINES:=./bin/check_newlines$(EXE)
$(CHECK_NEWLINES)
:
bin/check_newlines.ml
$(
PRINT_MAKING
)
$@
ifeq
($(OCAMLBEST),opt)
$(
OCAMLOPT
)
str.cmxa
unix.cmxa
$<
-o
$@
$(
OCAMLOPT
)
unix.cmxa
$<
-o
$@
else
$(
OCAMLC
)
str.cma
unix.cma
$<
-o
$@
$(
OCAMLC
)
unix.cma
$<
-o
$@
endif
check-newlines-clean
:
...
...
@@ -2166,9 +2166,9 @@ ISUTF8:=./bin/isutf8$(EXE)
$(ISUTF8)
:
bin/isutf8.ml
$(
PRINT_MAKING
)
$@
ifeq
($(OCAMLBEST),opt)
$(
OCAMLOPT
)
str.cmxa
$<
-o
$@
$(
OCAMLOPT
)
$<
-o
$@
else
$(
OCAMLC
)
str.cma
$<
-o
$@
$(
OCAMLC
)
$<
-o
$@
endif
isutf8-clean
:
...
...
This diff is collapsed.
Click to expand it.
bin/check_newlines.ml
+
0
−
19
View file @
f985ef63
module
StringSet
=
Set
.
Make
(
String
)
let
unquote_filename
filename
=
let
n
=
String
.
length
filename
in
let
r
=
if
n
>
1
&&
String
.
get
filename
0
=
'
"' &&
String.get filename (n - 1) = '"
'
then
String
.
sub
filename
1
(
n
-
2
)
else
filename
in
Str
.
global_replace
(
Str
.
regexp
"
\\\\
"
)
""
r
(* returns true for empty files *)
let
is_last_byte_newline
filename
=
try
...
...
@@ -51,13 +39,6 @@ let () =
try
while
true
;
do
let
filename
=
input_line
file_list_ic
in
let
filename
=
(* assume no empty filenames *)
if
String
.
get
filename
0
=
'
"' then
unquote_filename filename
else
filename
in
if
not
(
StringSet
.
mem
filename
to_ignore
)
&&
not
(
is_last_byte_newline
filename
)
then
begin
incr
errors
;
...
...
This diff is collapsed.
Click to expand it.
bin/isutf8.ml
+
0
−
19
View file @
f985ef63
module
StringSet
=
Set
.
Make
(
String
)
let
unquote_filename
filename
=
let
n
=
String
.
length
filename
in
let
r
=
if
n
>
1
&&
String
.
get
filename
0
=
'
"' &&
String.get filename (n - 1) = '"
'
then
String
.
sub
filename
1
(
n
-
2
)
else
filename
in
Str
.
global_replace
(
Str
.
regexp
"
\\\\
"
)
""
r
exception
False
let
is_valid_utf8
filename
=
...
...
@@ -71,13 +59,6 @@ let () =
try
while
true
;
do
let
filename
=
input_line
file_list_ic
in
let
filename
=
(* assume no empty filenames *)
if
String
.
get
filename
0
=
'
"' then
unquote_filename filename
else
filename
in
if
not
(
StringSet
.
mem
filename
to_ignore
)
&&
not
(
is_valid_utf8
filename
)
then
begin
incr
errors
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment