Skip to content

Commit

Permalink
Remove unneeded UCHAR_T cast from inword().
Browse files Browse the repository at this point in the history
  • Loading branch information
lichray committed Oct 10, 2012
1 parent 6ee5d9b commit 13f0cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vi/vi.h
Expand Up @@ -10,7 +10,7 @@
*/

/* Definition of a vi "word". */
#define inword(ch) ((ch) == '_' || (ISGRAPH((UCHAR_T)ch) && !ISPUNCT((UCHAR_T)ch)))
#define inword(ch) ((ch) == '_' || (ISGRAPH(ch) && !ISPUNCT(ch)))

typedef struct _vikeys VIKEYS;

Expand Down

0 comments on commit 13f0cd4

Please sign in to comment.