X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/65e86587ab836aaa86b12ce30b219bcb4fcbaa06..0f668a4db4a33f98f84613513af3efea521b4847:/oldXMenu/AddPane.c diff --git a/oldXMenu/AddPane.c b/oldXMenu/AddPane.c index 35d85a863b..2c8dda8cd1 100644 --- a/oldXMenu/AddPane.c +++ b/oldXMenu/AddPane.c @@ -1,8 +1,6 @@ -#include "copyright.h" - /* Copyright Massachusetts Institute of Technology 1985 */ -/* Copyright (C) 2001, 2002, 2003, 2004, 2005, - 2006 Free Software Foundation, Inc. */ + +#include "copyright.h" /* * XMenu: MIT Project Athena, X Window system menu package @@ -14,18 +12,17 @@ * */ -#include #include "XMenuInt.h" int -XMenuAddPane(display, menu, label, active) - Display *display; - register XMenu *menu; /* Menu object to be modified. */ - register char *label; /* Selection label. */ - int active; /* Make selection active? */ +XMenuAddPane(Display *display, register XMenu *menu, register char const *label, int active) + + /* Menu object to be modified. */ + /* Selection label. */ + /* Make selection active? */ { register XMPane *pane; /* Newly created pane. */ - register XMSelect *select; /* Initial selection for the new pane. */ + register XMSelect *sel; /* Initial selection for the new pane. */ int label_length; /* Label length in characters. */ int label_width; /* Label width in pixels. */ @@ -46,8 +43,8 @@ XMenuAddPane(display, menu, label, active) _XMErrorCode = XME_CALLOC; return(XM_FAILURE); } - select = (XMSelect *)calloc(1, sizeof(XMSelect)); - if (select == NULL) { + sel = (XMSelect *)calloc(1, sizeof(XMSelect)); + if (sel == NULL) { _XMErrorCode = XME_CALLOC; return(XM_FAILURE); } @@ -64,11 +61,11 @@ XMenuAddPane(display, menu, label, active) * Set up the initial selection. * Values not explicitly set are zeroed by calloc. */ - select->next = select; - select->prev = select; - select->type = SL_HEADER; - select->serial = -1; - select->parent_p = pane; + sel->next = sel; + sel->prev = sel; + sel->type = SL_HEADER; + sel->serial = -1; + sel->parent_p = pane; /* * Fill the XMPane structure. @@ -80,7 +77,7 @@ XMenuAddPane(display, menu, label, active) pane->label = label; pane->label_width = label_width; pane->label_length = label_length; - pane->s_list = select; + pane->s_list = sel; /* * Insert the pane at the end of the pane list. @@ -103,6 +100,3 @@ XMenuAddPane(display, menu, label, active) _XMErrorCode = XME_NO_ERROR; return((menu->p_count - 1)); } - -/* arch-tag: 62a26021-f29d-48ba-96ef-3b6c4ebd6547 - (do not change this comment) */