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
ce44f0e4
...
ce44f0e4bc3aa277fc46e817e66f44c80ae2298c
authored
2007-11-08 12:25:30 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(isword): Allow dots in words.
1 parent
bfcbdc8a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/cfg_lexer.c
mailbox/cfg_lexer.c
View file @
ce44f0e
...
...
@@ -70,7 +70,7 @@ isword (int c)
if
(
mu_cfg_tie_in
)
return
c
&&
c
!=
';'
;
return
isalnum
(
c
)
||
c
==
'_'
||
c
==
'-'
;
return
isalnum
(
c
)
||
c
==
'_'
||
c
==
'-'
||
c
==
'.'
;
}
static
char
*
...
...
Please
register
or
sign in
to post a comment