diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 73f024409b1..4c8336b8c82 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -4175,13 +4175,13 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message) | |||
| 4175 | convbytes += padding; | 4175 | convbytes += padding; |
| 4176 | if (convbytes <= buf + bufsize - p) | 4176 | if (convbytes <= buf + bufsize - p) |
| 4177 | { | 4177 | { |
| 4178 | info[n].start = nchars; | ||
| 4179 | if (! minus_flag) | 4178 | if (! minus_flag) |
| 4180 | { | 4179 | { |
| 4181 | memset (p, ' ', padding); | 4180 | memset (p, ' ', padding); |
| 4182 | p += padding; | 4181 | p += padding; |
| 4183 | nchars += padding; | 4182 | nchars += padding; |
| 4184 | } | 4183 | } |
| 4184 | info[n].start = nchars; | ||
| 4185 | 4185 | ||
| 4186 | if (p > buf | 4186 | if (p > buf |
| 4187 | && multibyte | 4187 | && multibyte |