lwlib/ trivia.
* lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib-utils.c, lwlib.c, xlwmenu.c: Standardize on <> for includes from the ../src directory.
This commit is contained in:
parent
6ffb2c0ceb
commit
67f02b82f4
7 changed files with 20 additions and 16 deletions
|
@ -1,9 +1,14 @@
|
|||
2011-02-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib-utils.c, lwlib.c:
|
||||
* xlwmenu.c: Standardize on <> for includes from the ../src directory.
|
||||
|
||||
2011-02-09 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* Makefile.in (@SET_MAKE@): New, set by configure.
|
||||
(globals): New variable and rule.
|
||||
(lwlib-utils.o, lwlib.o, lwlib-Xlw.o, lwlib-Xaw.o, lwlib-Xm.o)
|
||||
(xlwmenu.o): Add dependency on src/globals.h.
|
||||
(xlwmenu.o): Add dependency on src/globals.h.
|
||||
|
||||
2011-01-31 Jan Djärv <jan.h.d@swipnet.se>
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* The lwlib interface to Athena widgets.
|
||||
|
||||
Copyright (C) 1993 Chuck Thompson <cthomp@cs.uiuc.edu>
|
||||
Copyright (C) 1994, 2001-2011 Free Software Foundation, Inc.
|
||||
|
||||
|
@ -27,7 +28,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#include <setjmp.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "../src/lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include "lwlib-Xaw.h"
|
||||
|
||||
|
@ -833,4 +834,3 @@ xaw_creation_table [] =
|
|||
{"main", xaw_create_main},
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* The lwlib interface to "xlwmenu" menus.
|
||||
Copyright (C) 1992 Lucid, Inc.
|
||||
Copyright (C) 1994, 2000-2011 Free Software Foundation, Inc.
|
||||
|
||||
Copyright (C) 1992 Lucid, Inc.
|
||||
Copyright (C) 1994, 2000-2011 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of the Lucid Widget Library.
|
||||
|
||||
|
@ -24,7 +25,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#endif
|
||||
|
||||
#include <setjmp.h>
|
||||
#include "lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include "lwlib-Xlw.h"
|
||||
#include <X11/StringDefs.h>
|
||||
|
@ -272,4 +273,3 @@ xlw_destroy_instance (widget_instance *instance)
|
|||
if (instance->widget)
|
||||
XtDestroyWidget (instance->widget);
|
||||
}
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#include <X11/CoreP.h>
|
||||
#include <X11/CompositeP.h>
|
||||
|
||||
#include "../src/lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include "lwlib-Xm.h"
|
||||
#include "lwlib-utils.h"
|
||||
|
@ -1956,4 +1956,3 @@ xm_manage_resizing (Widget w, Boolean flag)
|
|||
{
|
||||
XtVaSetValues (w, XtNallowShellResize, flag, NULL);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* Defines some widget utility functions.
|
||||
|
||||
Copyright (C) 1992 Lucid, Inc.
|
||||
Copyright (C) 1994, 2001-2011 Free Software Foundation, Inc.
|
||||
|
||||
|
@ -31,7 +32,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#undef rindex
|
||||
|
||||
#include <setjmp.h>
|
||||
#include "../src/lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include <X11/Xatom.h>
|
||||
#include <X11/IntrinsicP.h>
|
||||
|
@ -173,4 +174,3 @@ XtSafelyDestroyWidget (Widget widget)
|
|||
abort ();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* A general interface to the widgets of different toolkits.
|
||||
|
||||
Copyright (C) 1992, 1993 Lucid, Inc.
|
||||
Copyright (C) 1994-1996, 1999-2011 Free Software Foundation, Inc.
|
||||
|
||||
|
@ -24,7 +25,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#endif
|
||||
|
||||
#include <setjmp.h>
|
||||
#include "../src/lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1418,4 +1419,3 @@ lw_separator_p (const char *label, enum menu_separator *type, int motif_p)
|
|||
|
||||
return separator_p;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* Implements a lightweight menubar widget.
|
||||
|
||||
Copyright (C) 1992 Lucid, Inc.
|
||||
Copyright (C) 1994-1995, 1997, 1999-2011 Free Software Foundation, Inc.
|
||||
|
||||
|
@ -26,7 +27,7 @@ Boston, MA 02110-1301, USA. */
|
|||
#endif
|
||||
|
||||
#include <setjmp.h>
|
||||
#include "lisp.h"
|
||||
#include <lisp.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
@ -56,7 +57,7 @@ extern int gray_bitmap_width;
|
|||
extern int gray_bitmap_height;
|
||||
extern char *gray_bitmap_bits;
|
||||
|
||||
#include "xterm.h"
|
||||
#include <xterm.h>
|
||||
|
||||
#else /* not emacs */
|
||||
|
||||
|
@ -2689,4 +2690,3 @@ pop_up_menu (XlwMenuWidget mw, XButtonPressedEvent *event)
|
|||
((XMotionEvent*)event)->is_hint = 0;
|
||||
handle_motion_event (mw, (XMotionEvent*)event);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue