1
1

* global.h: Move include for rx.h and eregex.h here.

Этот коммит содержится в:
Pavel Roskin 2002-08-21 07:20:39 +00:00
родитель e7482bec93
Коммит 9e36fa257d
6 изменённых файлов: 8 добавлений и 23 удалений

Просмотреть файл

@ -44,12 +44,6 @@
# include <malloc.h>
#endif
#if defined(HAVE_RX_H) && defined(HAVE_REGCOMP)
# include <rx.h>
#else
# include "src/eregex.h"
#endif
#include "src/global.h"
#include "src/tty.h"
#include "src/main.h" /* for char *shell */

Просмотреть файл

@ -1,5 +1,7 @@
2002-08-21 Pavel Roskin <proski@gnu.org>
* global.h: Move include for rx.h and eregex.h here.
* learn.c (learn_button): Don't allow Tab to be learned.
2002-08-20 David Martin <dmartina@excite.com>

Просмотреть файл

@ -46,12 +46,6 @@
#include "boxes.h"
#include "../vfs/vfs.h"
#if defined(HAVE_RX_H) && defined(HAVE_REGCOMP)
# include <rx.h>
#else
# include "eregex.h"
#endif
/* Size of the find parameters window */
#define FIND_Y 14
static int FIND_X = 50;

Просмотреть файл

@ -83,6 +83,12 @@ struct timeval {
#include <glib.h>
#if defined(HAVE_RX_H) && defined(HAVE_REGCOMP)
#include <rx.h>
#else
#include "eregex.h"
#endif
#ifndef __GNUC__
# define __attribute__(x)
#endif

Просмотреть файл

@ -36,12 +36,6 @@
#include <string.h>
#include <ctype.h>
#if defined(HAVE_RX_H) && defined(HAVE_REGCOMP)
#include <rx.h>
#else
#include "eregex.h"
#endif
#include "global.h"
#include "profile.h"
#include "main.h" /* mc_home */

Просмотреть файл

@ -40,11 +40,6 @@
#include <ctype.h> /* For toupper() */
#include <errno.h>
#include <limits.h>
#if defined(HAVE_RX_H) && defined(HAVE_REGCOMP)
# include <rx.h>
#else
# include "eregex.h"
#endif
#include "global.h"
#include "tty.h"