This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
toke.c: Silence win32 compiler warning.
[perl5.git] / utf8.c
2016-12-23 Karl Williamsonutf8.c Extract common code into macros
2016-12-19 Karl Williamsonperlapi: Expand on utf8n_to_uvchr_error
2016-12-14 Karl Williamsonperlapi: Clarify entry for utf8n_to_uvchr()
2016-12-11 Karl Williamsonutf8.c: Silence compiler warning
2016-12-07 Karl Williamsonutf8.c: Remove unused variable
2016-11-24 Karl Williamsonutf8.c: Fix EBCDIC detection of above-31 bit code points
2016-11-24 Karl WilliamsonSplit diagnostics for two UTF-8 malformations
2016-11-24 Karl Williamsonutf8.c: Clarify warning message.
2016-11-18 Karl WilliamsonChange white space to avoid C++ deprecation warning
2016-11-12 Karl WilliamsonPATCH: [perl #130010] a5540cf breaks texinfo
2016-11-12 Karl Williamsonutf8.c: Add comment
2016-11-06 Karl Williamsonutf8.c: No need to look at trailing NUL in comparing...
2016-11-02 Karl WilliamsonFix wrong UTF-8 overflow error on 32-bit platforms
2016-10-26 Karl Williamsonutf8.c: Silence unused parameter compiler warning
2016-10-20 Karl Williamsonutf8n_to_uvchr(): Reduce chances of reading beyond...
2016-10-19 Yves Ortonutf8.c: use new SvPVCLEAR and constant string friendly...
2016-10-18 Karl Williamsonutf8.c: Reflow 2 lines, so it is clear they are 2.
2016-10-18 Karl Williamsonperlapi: Grammar, typos
2016-10-16 Karl Williamsonutf8.c: Silence a compiler warning
2016-10-13 Karl Williamsonperlapi: Fix clause that should have been removed earlier
2016-10-13 Karl WilliamsonAdd utf8n_to_uvchr_error
2016-10-13 Karl Williamsonutf8n_to_uvchr(): Make a parameter const
2016-10-13 Karl Williamsonutf8n_to_uvchr(): Note multiple malformations
2016-10-13 Karl Williamsonutf8.c: Extract some code into 2 functions
2016-10-13 Karl Williamsonutf8.c: Rename a couple of macros for clarity
2016-10-13 Karl Williamsonutf8.c: Add some UNLIKELY()s
2016-10-13 Karl WilliamsonAdd details to UTF-8 malformation error messages
2016-10-13 Karl Williamsonutf8.c: Consolidate duplicate error msg text
2016-10-05 Karl Williamsonutf8.c: Add missing cast
2016-09-30 Karl Williamsonutf8.c: Add missing type specifier to declaration
2016-09-30 Karl Williamsonutf8n_to_uvchr() Fix EBCDIC bug with overlongs
2016-09-26 Karl WilliamsonCentralize definitions of MIN, MAX
2016-09-21 Karl Williamsonutf8.c: #define MIN if not already defined
2016-09-20 Karl Williamsonutf8.c: Fix bug in new _is_utf8_char_helper() function
2016-09-18 Karl Williamsonutf8.c: Add some UNLIKELYs
2016-09-18 Karl WilliamsonEnhance and rename is_utf8_char_slow()
2016-09-17 Karl WilliamsonRevamp overlong handling in is_utf8_char_slow, fixing...
2016-09-17 Karl Williamsonutf8.c: Fix typo in comment, add some comments
2016-09-17 Karl Williamsonutf8.c: Extract duplicate code to common fcn
2016-09-17 Karl WilliamsonAdd #defines for XS code for Unicode Corregindum 9
2016-09-17 Karl Williamsonperlapi: Clarify utf8n_to_uvchr entry
2016-09-01 Karl WilliamsonAdd is_utf8_valid_partial_char()
2016-09-01 Karl Williamsonutf8.c: Add comments
2016-09-01 Karl WilliamsonMove isUTF8_CHAR helper function, and reimplement it
2016-09-01 Karl WilliamsonInline is_utf8_string() and is_utf8_stringloclen()
2016-09-01 Karl WilliamsonInline utf8_distance(), utf8_hop()
2016-09-01 Karl WilliamsonSlightly simplify utf8_to_uvuni_buf()
2016-09-01 Karl WilliamsonInline is_utf8_invariant_string()
2016-09-01 Karl WilliamsonSimplify slightly is_utf8_invariant_string
2016-09-01 Karl WilliamsonAdd new synonym 'is_utf8_invariant_string'
2016-09-01 Karl Williamsonutf8.c: Use 'break' instead of 'goto'
2016-09-01 Karl WilliamsonDocument valid_utf8_to_uvchr() and inline it
2016-09-01 Karl Williamsonutf8.c: Clarify comments for valid_utf8_to_uvchr()
2016-09-01 Karl Williamsonutf8.c: Join EBCDIC/non-EBCDIC code
2016-08-17 Karl Williamsonutf8.c: Remove an EBCDIC-only path
2016-07-31 Dagfinn Ilmari Man... Fix comment typos principal → principle
2016-03-28 Daniel Dragansilence warnings in inline.h on Win64 VC build
2016-03-09 Karl Williamsonutf8.c: Add missing {}
2016-03-08 Karl WilliamsonConvert to use av_tindex_nomg()
2016-01-29 Karl Williamsonutf8.c: Add cast to suppress a warning message
2016-01-28 Karl Williamsonutf8.c: Add missing 'STATIC' to declaration
2015-12-16 Karl WilliamsonChange deprecation warning text
2015-12-10 Karl Williamsonutf8.c: Fix EBCDIC double translation
2015-12-10 Karl WilliamsonSkip casing for high code points
2015-12-10 Karl WilliamsonSkip casing for some non-cased scripts
2015-12-10 Karl Williamsonutf8.c: Add indentation
2015-12-10 Karl WilliamsonDon't try to case change surrogates, above-Unicodes
2015-12-10 Karl Williamsonutf8.c: Don't throw away a value and then recalc it
2015-12-10 Karl Williamsonperlapi: Vaguely deprecate to_utf8_case
2015-12-10 Karl Williamsonutf8.c: Add some LIKELY(), UNLIKELY()
2015-12-09 Karl Williamsonutf8.c: Fix broken EBCDIC compilation
2015-12-09 Karl WilliamsonPerl_uvoffuni_to_utf8_flags() Combine ASCII, EBCDIC...
2015-12-09 Karl Williamsonutf8.c: Extract some code into macros
2015-12-09 Karl Williamsonutf8.c: White-space only
2015-12-09 Karl Williamsonutf8.c: Add some UNLIKELY()
2015-12-09 Karl Williamsonutf8.c: Reorder some tests
2015-12-06 Karl Williamsonutf8.h, et.al.: Clean up some casts
2015-11-29 Karl Williamsonutf8.c: White-space, comment typos only
2015-11-29 Karl WilliamsonDeprecate Unicode code points above IV_MAX
2015-11-29 Karl Williamsonperlapi: Account for EBCDIC extend UTF-8 range
2015-11-29 Karl Williamsonutf8.h: Remove use of redundant flags
2015-11-29 Karl Williamsonutf8.h: Add clearer #define synonyms
2015-11-25 Karl WilliamsonExtend UTF-EBCDIC to handle up to 2**64-1
2015-11-25 Karl WilliamsonOutput appropriately dire warning for high code points
2015-11-25 Karl WilliamsonFix uvoffuni_to_utf8_flags() disallowed input
2015-10-06 Karl Williamsonutf8.c: Slight code simplification
2015-10-06 Karl Williamsonutf8.c: Fix comment
2015-09-18 Karl WilliamsonChange meaning of UNI_IS_INVARIANT on EBCDIC platforms
2015-09-04 Karl WilliamsonSkip some code in a common case
2015-09-04 Karl WilliamsonChange filter of problematic code points for EBCDIC
2015-09-04 Karl WilliamsonAdd macro for converting Latin1 to UTF-8, and use it
2015-09-04 Karl WilliamsonChange to use UVCHR_SKIP over UNI_SKIP
2015-09-04 Karl Williamsonperlapi use 'UTF-8' instead of variants of that
2015-09-04 Karl WilliamsonVarious pods: Add C<> around many typed-as-is things
2015-08-01 Karl Williamsonutf8.h: Add dummy param for when macros placed in API
2015-07-29 Karl WilliamsonHandle Unicode 3.0.1 /i Turkish "i" rules
2015-07-29 Karl Williamsonuc(sharp s) is itself in very early Unicode versions
2015-07-29 Karl WilliamsonThere are no folds to multiple chars in early Unicode...
2015-07-29 Karl WilliamsonAllow Perl to compile and work on Unicode releases...
2015-07-22 Jarkko Hietaniemiinline_invlist.c -> invlist_inline.h
next