commit to tag v1.5

This commit is contained in:
Antoine Fraboulet 2005-05-28 20:59:14 +00:00
parent 699f5fa205
commit d0418c3e8d
3 changed files with 4 additions and 8 deletions

View file

@ -3,8 +3,8 @@ dnl Process this file with autoconf to produce a configure script.
dnl --------------------------------------------------------------
dnl configure.in for Eliot
dnl --------------------------------------------------------------
dnl AC_REVISION($Id: configure.in,v 1.12 2005/04/27 17:55:32 ipkiss Exp $)
AC_INIT(eliot, 1.5-cvs)
dnl AC_REVISION($Id: configure.in,v 1.13 2005/05/28 20:59:14 afrab Exp $)
AC_INIT(eliot, 1.5)
AC_CONFIG_SRCDIR(wxwin/main.cc)
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)

View file

@ -18,7 +18,7 @@
/* 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"
@ -160,14 +160,12 @@ automaton_get_init(automaton a)
inline int
automaton_get_accept(automaton a, int state)
{
assert(0 <= state && state <= a->nstates);
return a->accept[state];
}
inline int
automaton_get_next_state(automaton a, int state, char l)
{
assert(0 <= state && state <= a->nstates);
return a->trans[state][(int)l];
}

View file

@ -16,7 +16,7 @@
/* along with this program; if not, write to the Free Software */
/* 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 <stdio.h>
@ -974,8 +974,6 @@ MainFrame::OnMenuShowFrame(wxCommandEvent& event)
int id;
id = event.GetId();
debug("switch display auxframe %d\n", id);
if (!GetMenuBar()->FindItem(id))
return;
id -= IDBASE;