]> code.delx.au - gnu-emacs/blobdiff - src/fns.c
* callint.c (Fcall_interactively): <, not <=, for optimization.
[gnu-emacs] / src / fns.c
index ca18dbfc100fa4c6fc9307332bdb71cb2ae4b5a9..09ce8c1b597ec8077fdb9102b66bc673e9dc620a 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 %"pEd"th character to unibyte", converted);
       string = make_unibyte_string ((char *) str, chars);
       xfree (str);
     }