aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-22 19:50:52 -0300
committerFelipe Oliveira Carvalho <felipekde@gmail.com>2015-04-24 20:37:13 -0300
commitbcfc37ea98136c449077baa8d97e2334da20d9fc (patch)
treefd409abd34a3e08fcddbbea0c4e07f3ec82c7e23 /runtime
parent2ca8afc74eada76f50ae60dbb0d6f1804d36bed5 (diff)
downloadrneovim-bcfc37ea98136c449077baa8d97e2334da20d9fc.tar.gz
rneovim-bcfc37ea98136c449077baa8d97e2334da20d9fc.tar.bz2
rneovim-bcfc37ea98136c449077baa8d97e2334da20d9fc.zip
Replace vim_isspace() with ascii_isspace() 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 abd2bf8b66..ead19742d1 100644
--- a/runtime/doc/develop.txt
+++ b/runtime/doc/develop.txt
@@ -185,7 +185,7 @@ malloc() lalloc() Like alloc(), but has long argument
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
+isspace() ascii_isspace() Can handle characters > 128
iswhite() ascii_iswhite() Only TRUE for tab and space
memcpy() mch_memmove() Handles overlapped copies
bcopy() mch_memmove() Handles overlapped copies