Re: Patch 7.4.1142

2016-01-20 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > With this patch, I got the following warnings: > > ``` > clang -c .. -o objects/syntax.o syntax.c > syntax.c:991:22: warning: declaration shadows a variable in the global > scope [-Wshadow] > save_chartab(char_u *chartab) > ^ > ./globals.h:1015

Re: Patch 7.4.1142

2016-01-19 Fir de Conversatie Kazunobu Kuriyama
EXTERN char_u chartab[256]; /* table used in charset.c; See ^ 2 warnings generated. ``` Best regards, Kazunobu Kuriyama 2016-01-20 6:29 GMT+09:00 Bram Moolenaar : > > Patch 7.4.1142 > Problem:Cannot define keyword characters for a syntax file. > Solutio

Patch 7.4.1142

2016-01-19 Fir de Conversatie Bram Moolenaar
Patch 7.4.1142 Problem:Cannot define keyword characters for a syntax file. Solution: Add the ":syn iskeyword" command. (Christian Brabandt) Files: runtime/doc/options.txt, runtime/doc/syntax.txt, src/buffer.c, src/option.c, src/structs.h, src/syntax.c,