Gitweb links:
...log
http://git.netsurf-browser.org/libutf8proc.git/shortlog/dee1a04b6a0234857...
...commit
http://git.netsurf-browser.org/libutf8proc.git/commit/dee1a04b6a023485733...
...tree
http://git.netsurf-browser.org/libutf8proc.git/tree/dee1a04b6a02348573333...
The branch, master has been updated
via dee1a04b6a0234857333325dcfdedf8450994f95 (commit)
from 282f8e43de41a586a126dac07fec36f50b78c60f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libutf8proc.git/commit/?id=dee1a04b6a02348...
commit dee1a04b6a0234857333325dcfdedf8450994f95
Author: Vincent Sanders <vince(a)kyllikki.org>
Commit: Vincent Sanders <vince(a)kyllikki.org>
remove duplicate definition left over from merge
diff --git a/include/libutf8proc/utf8proc.h b/include/libutf8proc/utf8proc.h
index 1fd79c6..f5cc1e1 100644
--- a/include/libutf8proc/utf8proc.h
+++ b/include/libutf8proc/utf8proc.h
@@ -552,12 +552,6 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_custom(
UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_normalize_utf32(utf8proc_int32_t *buffer,
utf8proc_ssize_t length, utf8proc_option_t options);
/**
- * Reencodes the sequence of unicode characters given by the pointer
- * 'buffer' and 'length'. See utf8proc_reencode for further details.
- */
-UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_normalize_utf32(utf8proc_int32_t *buffer,
utf8proc_ssize_t length, utf8proc_option_t options);
-
-/**
* Reencodes the sequence of `length` codepoints pointed to by `buffer`
* UTF-8 data in-place (i.e., the result is also stored in `buffer`).
* Can optionally normalize the UTF-32 sequence prior to UTF-8 conversion.
-----------------------------------------------------------------------
Summary of changes:
include/libutf8proc/utf8proc.h | 6 ------
1 file changed, 6 deletions(-)
diff --git a/include/libutf8proc/utf8proc.h b/include/libutf8proc/utf8proc.h
index 1fd79c6..f5cc1e1 100644
--- a/include/libutf8proc/utf8proc.h
+++ b/include/libutf8proc/utf8proc.h
@@ -552,12 +552,6 @@ UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_decompose_custom(
UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_normalize_utf32(utf8proc_int32_t *buffer,
utf8proc_ssize_t length, utf8proc_option_t options);
/**
- * Reencodes the sequence of unicode characters given by the pointer
- * 'buffer' and 'length'. See utf8proc_reencode for further details.
- */
-UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_normalize_utf32(utf8proc_int32_t *buffer,
utf8proc_ssize_t length, utf8proc_option_t options);
-
-/**
* Reencodes the sequence of `length` codepoints pointed to by `buffer`
* UTF-8 data in-place (i.e., the result is also stored in `buffer`).
* Can optionally normalize the UTF-32 sequence prior to UTF-8 conversion.
--
UTF8 Processing library (import)