From 93bf201119f68b0723ee3f240afa48134cc41399 Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Wed, 22 Apr 2015 19:12:26 -0300 Subject: Replace vim_iswhite with ascii_iswhite() defined in ascii.h --- runtime/doc/develop.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') 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 -- cgit From bcfc37ea98136c449077baa8d97e2334da20d9fc Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Wed, 22 Apr 2015 19:50:52 -0300 Subject: Replace vim_isspace() with ascii_isspace() defined in ascii.h --- runtime/doc/develop.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') 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 -- cgit From c96b933acc4d9ec7382d451055e44c85959772b9 Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Thu, 23 Apr 2015 00:03:36 -0300 Subject: Improve comments and fix ascii_* attributes --- runtime/doc/develop.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt index ead19742d1..2f96c4c6dc 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() ascii_isspace() Can handle characters > 128 -iswhite() ascii_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 -- cgit