summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Src/utils.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e8dac4c5d..82c53e098 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2005-10-03 Peter Stephenson <pws@csr.com>
+ * 21809: Src/utils.c: need to export nicedup() for
+ --disable-multibyte in zle.
+
* 21790: INSTALL, NEWS, README: add some documentation about
the 4.3 release.
diff --git a/Src/utils.c b/Src/utils.c
index 663be3b5b..838846910 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -3330,7 +3330,7 @@ zputs(char const *s, FILE *stream)
/* Create a visibly-represented duplicate of a string. */
/**/
-static char *
+mod_export char *
nicedup(char const *s, int heap)
{
int c, len = strlen(s) * 5 + 1;