summaryrefslogtreecommitdiff
path: root/oldXMenu/AddPane.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-04 14:56:31 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-04 14:56:31 +0000
commit177c0ea74342272645959b82cf219faa0b3dba16 (patch)
tree44e22b210a9904eab25a66d12e708804b671df75 /oldXMenu/AddPane.c
parentdb95369be096960245dd38678f68464627698678 (diff)
Trailing whitespace deleted.
Diffstat (limited to 'oldXMenu/AddPane.c')
-rw-r--r--oldXMenu/AddPane.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/oldXMenu/AddPane.c b/oldXMenu/AddPane.c
index 739cdfe43e..ab8ed42b01 100644
--- a/oldXMenu/AddPane.c
+++ b/oldXMenu/AddPane.c
@@ -1,6 +1,6 @@
#include "copyright.h"
-/* $Header: /u/src/emacs/19.0/oldXMenu/RCS/AddPane.c,v 1.1 1992/04/11 22:10:17 jimb Exp $ */
+/* $Header: /cvs/emacs/oldXMenu/AddPane.c,v 1.1 1999/10/03 19:34:51 fx Exp $ */
/* Copyright Massachusetts Institute of Technology 1985 */
/*
@@ -18,14 +18,14 @@
int
XMenuAddPane(display, menu, label, active)
- Display *display;
+ Display *display;
register XMenu *menu; /* Menu object to be modified. */
register char *label; /* Selection label. */
int active; /* Make selection active? */
{
register XMPane *pane; /* Newly created pane. */
register XMSelect *select; /* Initial selection for the new pane. */
-
+
int label_length; /* Label length in characters. */
int label_width; /* Label width in pixels. */
@@ -50,7 +50,7 @@ XMenuAddPane(display, menu, label, active)
_XMErrorCode = XME_CALLOC;
return(XM_FAILURE);
}
-
+
/*
* Determine label size.
*/
@@ -58,7 +58,7 @@ XMenuAddPane(display, menu, label, active)
label_width = XTextWidth(menu->p_fnt_info,
label,
label_length);
-
+
/*
* Set up the initial selection.
* Values not explicitly set are zeroed by calloc.
@@ -87,7 +87,7 @@ XMenuAddPane(display, menu, label, active)
emacs_insque(pane, menu->p_list->prev);
/*
- * Update the pane count.
+ * Update the pane count.
*/
menu->p_count++;