Omit space that broke ‘make check’

* src/print.c (print_vectorlike): Omit stray space.
This commit is contained in:
Paul Eggert 2017-06-05 00:17:05 -07:00
parent 6e4abc9d10
commit 646b74e50e

View file

@ -1709,7 +1709,7 @@ print_vectorlike (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag,
if (symbol == NULL)
{
print_c_string (" at ", printcharfun);
print_c_string ("at ", printcharfun);
enum { pointer_bufsize = sizeof ptr * 16 / CHAR_BIT + 2 + 1 };
char buffer[pointer_bufsize];
int needed = snprintf (buffer, sizeof buffer, "%p", ptr);