Undo Fstring_to_unibyte change.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Apr 2011 04:34:35 +0000 (21:34 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 6 Apr 2011 04:34:35 +0000 (21:34 -0700)
src/ChangeLog
src/fns.c

index 282b41a..788defb 100644 (file)
@@ -6,10 +6,7 @@
 
        * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
 
-       * fns.c (Fstring_to_unibyte): Don't rely on undefined behavior
-       by passing a long int to a printf format expecting an int.
-
-       * lisp.h (message, message_nolog, doprint, error, verror, fatal):
+       * lisp.h (message, message_nolog, doprnt, error, verror, fatal):
        Mark as printf-like functions.
 
        * xdisp.c (vmessage): Mark as a printf-like function.
index ca18dbf..c45d9e3 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1076,10 +1076,7 @@ an error is signaled.  */)
       EMACS_INT converted = str_to_unibyte (SDATA (string), str, chars, 0);
 
       if (converted < chars)
-       {
-         long lconverted = converted;
-         error ("Can't convert the %ldth character to unibyte", lconverted);
-       }
+       error ("Can't convert the %dth character to unibyte", converted);
       string = make_unibyte_string ((char *) str, chars);
       xfree (str);
     }