Mercurial > emacs
diff src/xselect.c @ 83650:984b1dfd7601
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
| author | Miles Bader <miles@gnu.org> |
|---|---|
| date | Fri, 03 Aug 2007 05:58:06 +0000 |
| parents | 65663fcd2caa b8c796068320 |
| children | cb0b0301bace |
line wrap: on
line diff
--- a/src/xselect.c Fri Aug 03 05:27:43 2007 +0000 +++ b/src/xselect.c Fri Aug 03 05:58:06 2007 +0000 @@ -1873,9 +1873,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]);
