* src/editfns.c (styled_format): Omit unnecessary code.

This commit is contained in:
Paul Eggert 2017-03-03 14:48:46 -08:00
parent 74f87fd111
commit 87849fe31f

View file

@ -4275,7 +4275,7 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)
{
char *f = convspec;
*f++ = '%';
*f = '-'; f += minus_flag;
/* MINUS_FLAG is dealt with later. */
*f = '+'; f += plus_flag;
*f = ' '; f += space_flag;
*f = '#'; f += sharp_flag;