changeset 78401:627812b69d17

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 03 Aug 2007 03:38:24 +0000
parents b399a27d1b5c
children d22d1c8033b8
files src/xselect.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/xselect.c	Fri Aug 03 03:21:13 2007 +0000
+++ b/src/xselect.c	Fri Aug 03 03:38:24 2007 +0000
@@ -1854,9 +1854,9 @@
 	}
     }
 
-  /* 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]);