Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
f885ce87
...
f885ce872fed0b0d807d8fbe18272d160b40665c
authored
2005-03-14 08:03:48 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(<HEX>): Bugfix
1 parent
cb345645
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mimeview/mimetypes.l
mimeview/mimetypes.l
View file @
f885ce8
...
...
@@ -106,7 +106,7 @@ WS [ \t]*
return STRING;
}
<HEX>{X}{X} {
int c = digit_to_number (yytext[0]
*16 +
yytext[1]);
int c = digit_to_number (yytext[0]
)*16 + digit_to_number (
yytext[1]);
obstack_1grow (&stack, c);
}
<HEX>">"/[ \t\\\n,)] {
...
...
Please
register
or
sign in
to post a comment