aboutsummaryrefslogtreecommitdiffstats
path: root/src/xselect.c
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-24 10:31:26 +0000
committerJuanma Barranquero2006-11-24 10:31:26 +0000
commitdb9cd97ad4957831331b4ef2ad79dd20545f67a8 (patch)
tree29dce6da514b72f4b07c088ef228f1cfa148cbb3 /src/xselect.c
parentac39a725f3f4a7d735c56129fc9d7e51521d1dd0 (diff)
downloademacs-db9cd97ad4957831331b4ef2ad79dd20545f67a8.tar.gz
emacs-db9cd97ad4957831331b4ef2ad79dd20545f67a8.zip
Space/tab mixup.
Diffstat (limited to 'src/xselect.c')
-rw-r--r--src/xselect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xselect.c b/src/xselect.c
index cb76e229e55..72d6aa071ca 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -835,7 +835,7 @@ x_reply_selection_request (event, format, data, size, type)
835 break; 835 break;
836 836
837 /* Now wait for the requester to ack this chunk by deleting the 837 /* Now wait for the requester to ack this chunk by deleting the
838 property. This can run random lisp code or signal. */ 838 property. This can run random lisp code or signal. */
839 TRACE1 ("Waiting for increment ACK (deletion of %s)", 839 TRACE1 ("Waiting for increment ACK (deletion of %s)",
840 XGetAtomName (display, reply.property)); 840 XGetAtomName (display, reply.property));
841 wait_for_property_change (wait_object); 841 wait_for_property_change (wait_object);
@@ -2710,11 +2710,11 @@ FRAME is on. If FRAME is nil, the selected frame is used. */)
2710 else 2710 else
2711 error ("ATOM must be a symbol or a string"); 2711 error ("ATOM must be a symbol or a string");
2712 2712
2713 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i) 2713 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
2714 if (dpyinfo->x_dnd_atoms[i] == x_atom) 2714 if (dpyinfo->x_dnd_atoms[i] == x_atom)
2715 return Qnil; 2715 return Qnil;
2716 2716
2717 if (dpyinfo->x_dnd_atoms_length == dpyinfo->x_dnd_atoms_size) 2717 if (dpyinfo->x_dnd_atoms_length == dpyinfo->x_dnd_atoms_size)
2718 { 2718 {
2719 dpyinfo->x_dnd_atoms_size *= 2; 2719 dpyinfo->x_dnd_atoms_size *= 2;
2720 dpyinfo->x_dnd_atoms = xrealloc (dpyinfo->x_dnd_atoms, 2720 dpyinfo->x_dnd_atoms = xrealloc (dpyinfo->x_dnd_atoms,
@@ -2744,7 +2744,7 @@ x_handle_dnd_message (f, event, dpyinfo, bufp)
2744 int idata[5]; 2744 int idata[5];
2745 size_t i; 2745 size_t i;
2746 2746
2747 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i) 2747 for (i = 0; i < dpyinfo->x_dnd_atoms_length; ++i)
2748 if (dpyinfo->x_dnd_atoms[i] == event->message_type) break; 2748 if (dpyinfo->x_dnd_atoms[i] == event->message_type) break;
2749 2749
2750 if (i == dpyinfo->x_dnd_atoms_length) return 0; 2750 if (i == dpyinfo->x_dnd_atoms_length) return 0;