From: Richard M. Stallman Date: Mon, 20 Jan 1997 01:56:52 +0000 (+0000) Subject: (print): Round size of bool-vector properly. X-Git-Tag: emacs-20.1~3051 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1bad7c592501927d868b017c8119002e59f0a4c0;p=emacs.git (print): Round size of bool-vector properly. --- diff --git a/src/print.c b/src/print.c index db0b4cba965..d26f7fd24dc 100644 --- a/src/print.c +++ b/src/print.c @@ -1136,7 +1136,7 @@ print (obj, printcharfun, escapeflag) register unsigned char c; struct gcpro gcpro1; int size_in_chars - = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR) / BITS_PER_CHAR; + = (XBOOL_VECTOR (obj)->size + BITS_PER_CHAR - 1) / BITS_PER_CHAR; GCPRO1 (obj);