aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorMiles Bader2007-08-03 05:58:06 +0000
committerMiles Bader2007-08-03 05:58:06 +0000
commit2ca773ca40d2c1896757e6382aefff6d9de1c5cc (patch)
tree846419ece5e5d8bc8f11e9786598678af9c78f00 /src/xselect.c
parent49b23c2a404cf31fb1aeecc7932a7304aaf16a67 (diff)
parent0896d93184a719bc994a3e699de27190aac0acb1 (diff)
downloademacs-2ca773ca40d2c1896757e6382aefff6d9de1c5cc.tar.gz
emacs-2ca773ca40d2c1896757e6382aefff6d9de1c5cc.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 843-845) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 84-87) - Update from CVS - Change capitalization of VC backend names for new backends Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-30
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 7e77df0d6c3..b2d47bd1175 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -1873,9 +1873,9 @@ selection_data_to_lisp_data (display, data, size, type, format)
1873 } 1873 }
1874 } 1874 }
1875 1875
1876 /* Convert a single 16 or small 32 bit number to a Lisp_Int. 1876 /* Convert a single 16-bit number or a small 32-bit number to a Lisp_Int.
1877 If the number is > 16 bits, convert it to a cons of integers, 1877 If the number is 32 bits and won't fit in a Lisp_Int,
1878 16 bits in each half. 1878 convert it to a cons of integers, 16 bits in each half.
1879 */ 1879 */
1880 else if (format == 32 && size == sizeof (int)) 1880 else if (format == 32 && size == sizeof (int))
1881 return long_to_cons (((unsigned int *) data) [0]); 1881 return long_to_cons (((unsigned int *) data) [0]);