mirror of https://github.com/fltk/fltk
Update the default word detection to stop for /\&
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10402 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
parent
a11d067d68
commit
6be263865c
|
@ -422,7 +422,7 @@ void Fl_Input_::drawtext(int X, int Y, int W, int H) {
|
|||
\todo This function is not UTF-8-aware.
|
||||
*/
|
||||
static int isword(char c) {
|
||||
return (c&128 || isalnum(c) || strchr("#%&-/@\\_~", c));
|
||||
return (c&128 || isalnum(c) || strchr("#%-@_~", c));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue