summaryrefslogtreecommitdiff
path: root/src/lib.c
diff options
context:
space:
mode:
authorDimitrij Mijoski <dmjpp@hotmail.com>2022-03-16 13:55:15 +0100
committerReuben Thomas <rrt@sc3d.org>2022-03-19 06:21:57 +0000
commite523f845add260106335cecfe08534cf8732cc29 (patch)
tree5bb3304708a5ffc49b035ab332b84614dd9afb1c /src/lib.c
parent49d87fea52bb19770f76710cfaf69881246a7219 (diff)
downloadenchant-e523f845add260106335cecfe08534cf8732cc29.tar.gz
Reduce dependency on gnulib by requiring C99 and POSIX 2008
- Remove gnulib modules c99, getopt-posix, strdup-posix, ssize_t - Also remove obsolete gnulib module snippet/unused-parameter, use _GL_UNUSED instead of older _GL_UNUSED_PARAMETER, and instead of [[maybe_unused]]. Thanks to @dimztimz for providing the patch on which this commit is based.
Diffstat (limited to 'src/lib.c')
-rw-r--r--src/lib.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib.c b/src/lib.c
index 14da76a..d9d3c54 100644
--- a/src/lib.c
+++ b/src/lib.c
@@ -48,7 +48,6 @@
#include "enchant-provider.h"
#include "debug.h"
#include "pwl.h"
-#include "unused-parameter.h"
#include "relocatable.h"
#include "configmake.h"
@@ -162,7 +161,7 @@ enchant_get_conf_dirs (void)
/* returns TRUE if tag is valid
* for requires alphanumeric ASCII or underscore
*/
-static _GL_ATTRIBUTE_PURE int
+static G_GNUC_PURE int
enchant_is_valid_dictionary_tag(const char * const tag)
{
const char * it;
@@ -1300,7 +1299,7 @@ enchant_broker_dict_exists (EnchantBroker * broker, const char * const tag)
return exists;
}
-_GL_ATTRIBUTE_PURE const char *
+G_GNUC_PURE const char *
enchant_dict_get_extra_word_characters (EnchantDict *dict)
{
g_return_val_if_fail (dict, NULL);
@@ -1308,7 +1307,7 @@ enchant_dict_get_extra_word_characters (EnchantDict *dict)
return dict->get_extra_word_characters ? (*dict->get_extra_word_characters) (dict) : "";
}
-_GL_ATTRIBUTE_PURE int
+G_GNUC_PURE int
enchant_dict_is_word_character (EnchantDict * dict, uint32_t uc_in, size_t n)
{
g_return_val_if_fail (n <= 2, 0);