]> code.delx.au - gnu-emacs/blobdiff - oldXMenu/Locate.c
Remove now-inaccurate bytecode comments
[gnu-emacs] / oldXMenu / Locate.c
index 156d75762b14831dd35c3d3765c5167c6553f1bb..1605b4bbb299154674dd671adba1496634ffbf75 100644 (file)
@@ -1,8 +1,7 @@
+/* Copyright    Massachusetts Institute of Technology    1985  */
+
 #include "copyright.h"
 
-/* Copyright    Massachusetts Institute of Technology    1985  */
-/* Copyright (C) 2001, 2002, 2003, 2004, 2005,
-                 2006 Free Software Foundation, Inc.  */
 
 /*
  * XMenu:      MIT Project Athena, X Window system menu package
 #include "XMenuInt.h"
 
 int
-XMenuLocate(display, menu, p_num, s_num, x_pos, y_pos, ul_x, ul_y, width, height)
-    register Display *display; /* Previously opened display. */
-    register XMenu *menu;      /* Menu object being located. */
-    int p_num;                 /* Active pane number. */
-    int s_num;                 /* Active selection number. */
-    int x_pos;                 /* X coordinate of mouse active position. */
-    int y_pos;                 /* Y coordinate of mouse active position. */
-    int *ul_x;                 /* Returned upper left menu X coordinate. */
-    int *ul_y;                 /* Returned upper left menu Y coordinate. */
-    int *width;                        /* Returned menu width. */
-    int *height;               /* Returned menu height. */
+XMenuLocate(register Display *display, register XMenu *menu, int p_num, int s_num, int x_pos, int y_pos, int *ul_x, int *ul_y, int *width, int *height)
+                               /* Previously opened display. */
+                               /* Menu object being located. */
+                               /* Active pane number. */
+                               /* Active selection number. */
+                               /* X coordinate of mouse active position. */
+                               /* Y coordinate of mouse active position. */
+                               /* Returned upper left menu X coordinate. */
+                               /* Returned upper left menu Y coordinate. */
+                                       /* Returned menu width. */
+                               /* Returned menu height. */
 {
     register XMPane *p_ptr;    /* XMPane pointer. */
     register XMSelect *s_ptr;  /* XMSelect pointer. */
@@ -78,5 +77,3 @@ XMenuLocate(display, menu, p_num, s_num, x_pos, y_pos, ul_x, ul_y, width, height
     return(XM_SUCCESS);
 }
 
-/* arch-tag: 1ff94bab-cf67-4c92-bff4-dc0130153173
-   (do not change this comment) */