The l (lower-case letter ell) flag is a `long' data type modifier: it is
supported for %d, %o, and %x conversions of integral arguments, and means
that the respective argument is to be treated as `long int' or `unsigned
- long int'. The EMACS_INT data type should use this modifier.
+ long int'. ll means to use 'long long'. EMACS_INT arguments
+ should use the pI macro, which expands to whatever length modifier
+ is needed for the target host, e.g., "", "l", "ll".
The width specifier supplies a lower limit for the length of the printed
representation. The padding, if any, normally goes on the left, but it goes
else if (*fmt == 'l')
{
long_flag = 1;
+ if (fmt[1] == 'l')
+ {
+ long_flag = 2;
+ fmt++;
+ }
if (!strchr ("dox", fmt[1]))
/* %l as conversion specifier, not as modifier. */
break;
int i;
long l;
- if (long_flag)
+ if (1 < long_flag)
+ {
+#ifdef HAVE_LONG_LONG_INT
+ long long ll = va_arg (ap, long long);
+ sprintf (sprintf_buffer, fmtcpy, ll);
+#else
+ abort ();
+#endif
+ }
+ else if (long_flag)
{
l = va_arg(ap, long);
sprintf (sprintf_buffer, fmtcpy, l);
unsigned u;
unsigned long ul;
- if (long_flag)
+ if (1 < long_flag)
+ {
+#ifdef HAVE_UNSIGNED_LONG_LONG_INT
+ unsigned long long ull = va_arg (ap, unsigned long long);
+ sprintf (sprintf_buffer, fmtcpy, ull);
+#else
+ abort ();
+#endif
+ }
+ else if (long_flag)
{
ul = va_arg(ap, unsigned long);
sprintf (sprintf_buffer, fmtcpy, ul);