From: Richard M. Stallman Date: Fri, 3 Aug 2007 03:38:24 +0000 (+0000) Subject: Comment change. X-Git-Tag: emacs-pretest-22.1.90~1113 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1ad08acd2bf7e17cd3222f8636bb6dd662b60df7;p=emacs.git Comment change. --- diff --git a/src/xselect.c b/src/xselect.c index 0204abb2d96..fc3659faedd 100644 --- a/src/xselect.c +++ b/src/xselect.c @@ -1854,9 +1854,9 @@ selection_data_to_lisp_data (display, data, size, type, format) } } - /* Convert a single 16 or small 32 bit number to a Lisp_Int. - If the number is > 16 bits, convert it to a cons of integers, - 16 bits in each half. + /* Convert a single 16-bit number or a small 32-bit number to a Lisp_Int. + If the number is 32 bits and won't fit in a Lisp_Int, + convert it to a cons of integers, 16 bits in each half. */ else if (format == 32 && size == sizeof (int)) return long_to_cons (((unsigned int *) data) [0]);