* fns.c (Fstring_to_unibyte): Adjust to str_to_unibyte change.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 26 Aug 2012 09:26:45 +0000 (02:26 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 26 Aug 2012 09:26:45 +0000 (02:26 -0700)
src/fns.c

index 3225fef..91ba285 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1100,7 +1100,7 @@ an error is signaled.  */)
     {
       ptrdiff_t chars = SCHARS (string);
       unsigned char *str = xmalloc (chars);
-      ptrdiff_t converted = str_to_unibyte (SDATA (string), str, chars, 0);
+      ptrdiff_t converted = str_to_unibyte (SDATA (string), str, chars);
 
       if (converted < chars)
        error ("Can't convert the %"pD"dth character to unibyte", converted);