]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Fri, 3 Aug 2007 03:38:24 +0000 (03:38 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 3 Aug 2007 03:38:24 +0000 (03:38 +0000)
src/xselect.c

index 0204abb2d96f4afbbd518b2ed114d1fd3ccc376d..fc3659faedd1c72077911c7f9322d204bc49585a 100644 (file)
@@ -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]);