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:
Lauri Kasanen 2014-10-28 15:33:17 +00:00
parent a11d067d68
commit 6be263865c
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}
/**