]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last change.
authorAndreas Schwab <schwab@suse.de>
Thu, 15 Nov 2007 23:53:10 +0000 (23:53 +0000)
committerAndreas Schwab <schwab@suse.de>
Thu, 15 Nov 2007 23:53:10 +0000 (23:53 +0000)
src/editfns.c

index fb9c1c96b59905b3c9b269fe185902586c04140c..deb9519897808e69cb55af3b4f6eecaaaaa9e2d6 100644 (file)
@@ -3543,8 +3543,10 @@ usage: (format STRING &rest OBJECTS)  */)
              precision[n+1] = 10 * precision[n+1] + *format - '0';
          }
 
-       if (format - this_format_start + 1 > longest_format)
-         longest_format = format - this_format_start + 1;
+       /* Extra +1 for 'l' that we may need to insert into the
+          format.  */
+       if (format - this_format_start + 2 > longest_format)
+         longest_format = format - this_format_start + 2;
 
        if (format == end)
          error ("Format string ends in middle of format specifier");