This commit is contained in:
Andrey A. Chernov 2007-04-12 14:45:25 +00:00
parent 201096bc46
commit 4abbac1579
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168666
2 changed files with 13 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# $FreeBSD$
#
# Official patch 001 imported as v5_2_p1
# Official patch 002 imported as v5_2_p2
#
rm doc/*.dvi doc/*.html doc/*.ps doc/*.0 doc/*.info doc/*.tex doc/texi2* doc/*.pdf

View File

@ -562,6 +562,17 @@ rl_redisplay ()
wrap_offset = prompt_invis_chars_first_line = 0;
}
#if defined (HANDLE_MULTIBYTE)
#define CHECK_INV_LBREAKS() \
do { \
if (newlines >= (inv_lbsize - 2)) \
{ \
inv_lbsize *= 2; \
inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \
_rl_wrapped_line = (int *)xrealloc (_rl_wrapped_line, inv_lbsize * sizeof (int)); \
} \
} while (0)
#else
#define CHECK_INV_LBREAKS() \
do { \
if (newlines >= (inv_lbsize - 2)) \
@ -570,6 +581,7 @@ rl_redisplay ()
inv_lbreaks = (int *)xrealloc (inv_lbreaks, inv_lbsize * sizeof (int)); \
} \
} while (0)
#endif /* HANDLE_MULTIBYTE */
#if defined (HANDLE_MULTIBYTE)
#define CHECK_LPOS() \