summaryrefslogtreecommitdiff
path: root/ext/pspell/pspell.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pspell/pspell.c')
-rw-r--r--ext/pspell/pspell.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/ext/pspell/pspell.c b/ext/pspell/pspell.c
index 1a6a67b0f5..7f6ea2d1b9 100644
--- a/ext/pspell/pspell.c
+++ b/ext/pspell/pspell.c
@@ -73,7 +73,6 @@ static PHP_FUNCTION(pspell_config_repl);
static PHP_FUNCTION(pspell_config_save_repl);
/* {{{ arginfo */
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_new, 0, 0, 1)
ZEND_ARG_INFO(0, language)
ZEND_ARG_INFO(0, spelling)
@@ -82,7 +81,6 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_new, 0, 0, 1)
ZEND_ARG_INFO(0, mode)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_new_personal, 0, 0, 2)
ZEND_ARG_INFO(0, personal)
ZEND_ARG_INFO(0, language)
@@ -92,53 +90,44 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_new_personal, 0, 0, 2)
ZEND_ARG_INFO(0, mode)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_new_config, 0, 0, 1)
ZEND_ARG_INFO(0, config)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_check, 0, 0, 2)
ZEND_ARG_INFO(0, pspell)
ZEND_ARG_INFO(0, word)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_suggest, 0, 0, 2)
ZEND_ARG_INFO(0, pspell)
ZEND_ARG_INFO(0, word)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_store_replacement, 0, 0, 3)
ZEND_ARG_INFO(0, pspell)
ZEND_ARG_INFO(0, misspell)
ZEND_ARG_INFO(0, correct)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_add_to_personal, 0, 0, 2)
ZEND_ARG_INFO(0, pspell)
ZEND_ARG_INFO(0, word)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_add_to_session, 0, 0, 2)
ZEND_ARG_INFO(0, pspell)
ZEND_ARG_INFO(0, word)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_clear_session, 0, 0, 1)
ZEND_ARG_INFO(0, pspell)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_save_wordlist, 0, 0, 1)
ZEND_ARG_INFO(0, pspell)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_create, 0, 0, 1)
ZEND_ARG_INFO(0, language)
ZEND_ARG_INFO(0, spelling)
@@ -146,49 +135,41 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_create, 0, 0, 1)
ZEND_ARG_INFO(0, encoding)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_runtogether, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, runtogether)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_mode, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, mode)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_ignore, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, ignore)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_personal, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, personal)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_dict_dir, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, directory)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_data_dir, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, directory)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_repl, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, repl)
ZEND_END_ARG_INFO()
-static
ZEND_BEGIN_ARG_INFO_EX(arginfo_pspell_config_save_repl, 0, 0, 2)
ZEND_ARG_INFO(0, conf)
ZEND_ARG_INFO(0, save)