Skip to content

Commit 0c72a2a

Browse files
committed
Add enchant_dict_remove()
1 parent d0d8e68 commit 0c72a2a

File tree

6 files changed

+56
-1
lines changed

6 files changed

+56
-1
lines changed

NEWS

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ PHP NEWS
3131

3232
- Enchant:
3333
. Added enchant_dict_remove_from_session(). (nielsdos)
34+
. Added enchant_dict_remove(). (nielsdos)
3435

3536
-GD:
3637
. Fixed bug #68629 (Transparent artifacts when using imagerotate). (pierre,

UPGRADING

+2
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,8 @@ PHP 8.5 UPGRADE NOTES
169169
- Enchant:
170170
. Added enchant_dict_remove_from_session() to remove a word added to the
171171
spellcheck session via enchant_dict_add_to_session().
172+
. Added enchant_dict_remove() to put a word on the exclusion list and remove
173+
remove it from the session dictionary.
172174

173175
- PGSQL:
174176
. pg_close_stmt offers an alternative way to close a prepared

ext/enchant/enchant.c

+16
Original file line numberDiff line numberDiff line change
@@ -689,6 +689,22 @@ PHP_FUNCTION(enchant_dict_add)
689689
}
690690
/* }}} */
691691

692+
PHP_FUNCTION(enchant_dict_remove)
693+
{
694+
zval *dict;
695+
char *word;
696+
size_t wordlen;
697+
enchant_dict *pdict;
698+
699+
if (zend_parse_parameters(ZEND_NUM_ARGS(), "Op", &dict, enchant_dict_ce, &word, &wordlen) == FAILURE) {
700+
RETURN_THROWS();
701+
}
702+
703+
PHP_ENCHANT_GET_DICT;
704+
705+
enchant_dict_remove(pdict->pdict, word, wordlen);
706+
}
707+
692708
/* {{{ add 'word' to this spell-checking session */
693709
PHP_FUNCTION(enchant_dict_add_to_session)
694710
{

ext/enchant/enchant.stub.php

+2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ function enchant_dict_suggest(EnchantDictionary $dictionary, string $word): arra
8787

8888
function enchant_dict_add(EnchantDictionary $dictionary, string $word): void {}
8989

90+
function enchant_dict_remove(EnchantDictionary $dictionary, string $word): void {}
91+
9092
/**
9193
* @alias enchant_dict_add
9294
*/

ext/enchant/enchant_arginfo.h

+5-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/enchant/tests/dict_remove.phpt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
--TEST--
2+
enchant_dict_remove() function
3+
--EXTENSIONS--
4+
enchant
5+
--SKIPIF--
6+
<?php
7+
if (!is_array(enchant_broker_list_dicts(enchant_broker_init()))) die("skip no dictionary installed on this machine");
8+
?>
9+
--FILE--
10+
<?php
11+
$broker = enchant_broker_init();
12+
$dicts = enchant_broker_list_dicts($broker);
13+
$newWord = 'myImaginaryWord';
14+
15+
$requestDict = enchant_broker_request_dict($broker, $dicts[0]['lang_tag']);
16+
17+
var_dump(enchant_dict_check($requestDict, $newWord));
18+
enchant_dict_add($requestDict, $newWord);
19+
var_dump(enchant_dict_check($requestDict, $newWord));
20+
var_dump(enchant_dict_is_added($requestDict, $newWord));
21+
enchant_dict_remove($requestDict, $newWord);
22+
var_dump(enchant_dict_check($requestDict, $newWord));
23+
var_dump(enchant_dict_is_added($requestDict, $newWord));
24+
?>
25+
--EXPECT--
26+
bool(false)
27+
bool(true)
28+
bool(true)
29+
bool(false)
30+
bool(false)

0 commit comments

Comments
 (0)