X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/7c420169baa7c50428589cca7f8eda71b462eb15..06b583dec7cbde714c8fb991a1e123f612b66e3a:/oldXMenu/XLookAssoc.c diff --git a/oldXMenu/XLookAssoc.c b/oldXMenu/XLookAssoc.c index a1a06e900c..fad960d7a4 100644 --- a/oldXMenu/XLookAssoc.c +++ b/oldXMenu/XLookAssoc.c @@ -2,7 +2,7 @@ #include "copyright.h" - +#include #include #include #include "X10.h" @@ -18,10 +18,9 @@ * in the table the routine will return a NULL pointer. All XId's are relative * to the currently active Display. */ -caddr_t XLookUpAssoc(register Display *dpy, register XAssocTable *table, register XID x_id) - - /* XAssocTable to search in. */ - /* XId to search for. */ +caddr_t XLookUpAssoc(Display *dpy, + XAssocTable *table, /* XAssocTable to search in. */ + XID x_id) /* XId to search for. */ { int hash; register XAssoc *bucket; @@ -55,6 +54,3 @@ caddr_t XLookUpAssoc(register Display *dpy, register XAssocTable *table, registe /* It is apparently not in the table. */ return(NULL); } - -/* arch-tag: d5075d0c-4b71-467d-b33c-3f5c4c4afcf2 - (do not change this comment) */