Imported from ../bash-2.02.1.tar.gz.
diff --git a/bashline.c b/bashline.c
index a86e662..3709050 100644
--- a/bashline.c
+++ b/bashline.c
@@ -213,7 +213,9 @@
#ifdef ALIAS
rl_add_defun ("alias-expand-line", (Function *)alias_expand_line, -1);
+# ifdef BANG_HISTORY
rl_add_defun ("history-and-alias-expand-line", (Function *)history_and_alias_expand_line, -1);
+# endif
#endif
/* Backwards compatibility. */
@@ -538,7 +540,7 @@
continue;
/* OK, it matches. Add it to the list. */
- if (nmatch >= rsize)
+ if (nmatch >= (rsize - 1))
{
rsize = (rsize + 16) - (rsize % 16);
result = (char **)xrealloc (result, rsize * sizeof (char *));