aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorRichard M. Stallman2007-08-03 03:38:24 +0000
committerRichard M. Stallman2007-08-03 03:38:24 +0000
commit1ad08acd2bf7e17cd3222f8636bb6dd662b60df7 (patch)
tree93aabbc70018c7595ed7cbef04f5c7dede2bb6b1 /src/xselect.c
parent3ff67968417a2e78d5ff5bbed1878de9dca64557 (diff)
downloademacs-1ad08acd2bf7e17cd3222f8636bb6dd662b60df7.tar.gz
emacs-1ad08acd2bf7e17cd3222f8636bb6dd662b60df7.zip
Comment change.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c6
1 files changed, 3 insertions, 3 deletions
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)
1854 } 1854 }
1855 } 1855 }
1856 1856
1857 /* Convert a single 16 or small 32 bit number to a Lisp_Int. 1857 /* Convert a single 16-bit number or a small 32-bit number to a Lisp_Int.
1858 If the number is > 16 bits, convert it to a cons of integers, 1858 If the number is 32 bits and won't fit in a Lisp_Int,
1859 16 bits in each half. 1859 convert it to a cons of integers, 16 bits in each half.
1860 */ 1860 */
1861 else if (format == 32 && size == sizeof (int)) 1861 else if (format == 32 && size == sizeof (int))
1862 return long_to_cons (((unsigned int *) data) [0]); 1862 return long_to_cons (((unsigned int *) data) [0]);