mirror of
git://git.savannah.nongnu.org/eliot.git
synced 2025-01-29 20:34:56 +01:00
commit to tag v1.5
This commit is contained in:
parent
699f5fa205
commit
d0418c3e8d
3 changed files with 4 additions and 8 deletions
|
@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
|
||||||
dnl --------------------------------------------------------------
|
dnl --------------------------------------------------------------
|
||||||
dnl configure.in for Eliot
|
dnl configure.in for Eliot
|
||||||
dnl --------------------------------------------------------------
|
dnl --------------------------------------------------------------
|
||||||
dnl AC_REVISION($Id: configure.in,v 1.12 2005/04/27 17:55:32 ipkiss Exp $)
|
dnl AC_REVISION($Id: configure.in,v 1.13 2005/05/28 20:59:14 afrab Exp $)
|
||||||
AC_INIT(eliot, 1.5-cvs)
|
AC_INIT(eliot, 1.5)
|
||||||
AC_CONFIG_SRCDIR(wxwin/main.cc)
|
AC_CONFIG_SRCDIR(wxwin/main.cc)
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Id: automaton.c,v 1.7 2005/05/05 23:45:04 afrab Exp $
|
* $Id: automaton.c,v 1.8 2005/05/28 20:59:14 afrab Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
@ -160,14 +160,12 @@ automaton_get_init(automaton a)
|
||||||
inline int
|
inline int
|
||||||
automaton_get_accept(automaton a, int state)
|
automaton_get_accept(automaton a, int state)
|
||||||
{
|
{
|
||||||
assert(0 <= state && state <= a->nstates);
|
|
||||||
return a->accept[state];
|
return a->accept[state];
|
||||||
}
|
}
|
||||||
|
|
||||||
inline int
|
inline int
|
||||||
automaton_get_next_state(automaton a, int state, char l)
|
automaton_get_next_state(automaton a, int state, char l)
|
||||||
{
|
{
|
||||||
assert(0 <= state && state <= a->nstates);
|
|
||||||
return a->trans[state][(int)l];
|
return a->trans[state][(int)l];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
/* along with this program; if not, write to the Free Software */
|
/* along with this program; if not, write to the Free Software */
|
||||||
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||||||
|
|
||||||
/* $Id: mainframe.cc,v 1.8 2005/04/09 16:13:44 afrab Exp $ */
|
/* $Id: mainframe.cc,v 1.9 2005/05/28 20:59:14 afrab Exp $ */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
@ -974,8 +974,6 @@ MainFrame::OnMenuShowFrame(wxCommandEvent& event)
|
||||||
int id;
|
int id;
|
||||||
id = event.GetId();
|
id = event.GetId();
|
||||||
|
|
||||||
debug("switch display auxframe %d\n", id);
|
|
||||||
|
|
||||||
if (!GetMenuBar()->FindItem(id))
|
if (!GetMenuBar()->FindItem(id))
|
||||||
return;
|
return;
|
||||||
id -= IDBASE;
|
id -= IDBASE;
|
||||||
|
|
Loading…
Add table
Reference in a new issue