]> code.delx.au - gnu-emacs/blobdiff - oldXMenu/XDelAssoc.c
Prevent bar cursor overwriting next glyph (bug#16856)
[gnu-emacs] / oldXMenu / XDelAssoc.c
index 7aca50aa56b10199c776b7f3aac8d055b1085b1c..ec1d09d46ec09b43c89a32e9bbba101fcff76b6a 100644 (file)
@@ -2,21 +2,14 @@
 
 #include "copyright.h"
 
-
-#include <X11/Xlib.h>
-#include "X10.h"
-struct qelem {
-       struct    qelem *q_forw;
-       struct    qelem *q_back;
-       char q_data[1];
-};
-void emacs_remque(struct qelem*);
+#include "XMenuInt.h"
 
 /*
  * XDeleteAssoc - Delete an association in an XAssocTable keyed on
  * an XId.  An association may be removed only once.  Redundant
  * deletes are meaningless (but cause no problems).
  */
+void
 XDeleteAssoc(register Display *dpy, register XAssocTable *table, register XID x_id)
 {
        int hash;
@@ -55,6 +48,3 @@ XDeleteAssoc(register Display *dpy, register XAssocTable *table, register XID x_
        /* It is apparently not in the table. */
        return;
 }
-
-/* arch-tag: 90981a7e-601c-487a-b364-cdf55d6c475b
-   (do not change this comment) */