aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-22 19:12:26 -0300
committerFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-24 20:37:13 -0300
commit93bf201119f68b0723ee3f240afa48134cc41399 (patch)
treee314c40921aa19141cc68b6f6af3e23fa2ca2ef8 /runtime
parentd350d12a00518aa0d9e3a1d49c6815c3398d882f (diff)
downloadrneovim-93bf201119f68b0723ee3f240afa48134cc41399.tar.gz
rneovim-93bf201119f68b0723ee3f240afa48134cc41399.tar.bz2
rneovim-93bf201119f68b0723ee3f240afa48134cc41399.zip
Replace vim_iswhite with ascii_iswhite() defined in ascii.h
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/develop.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt
index 493517f908..abd2bf8b66 100644
--- a/runtime/doc/develop.txt
+++ b/runtime/doc/develop.txt
@@ -186,7 +186,7 @@ strcpy() STRCPY() Includes cast to (char *), for char_u * args
strchr() vim_strchr() Accepts special characters
strrchr() vim_strrchr() Accepts special characters
isspace() vim_isspace() Can handle characters > 128
-iswhite() vim_iswhite() Only TRUE for tab and space
+iswhite() ascii_iswhite() Only TRUE for tab and space
memcpy() mch_memmove() Handles overlapped copies
bcopy() mch_memmove() Handles overlapped copies
memset() vim_memset() Uniform for all systems