1
1
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3351 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
David Lawrence Ramsey 2006-04-05 16:58:45 +00:00
родитель ca70ff69ed
Коммит b0588ae45e
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1,5 +1,6 @@
CVS code - CVS code -
- General: - General:
- Miscellaneous comment fixes. (DLR)
- Implement filename searches in the file browser. New - Implement filename searches in the file browser. New
functions filesearch_init(), findnextfile(), functions filesearch_init(), findnextfile(),
findnextfile_wrap_reset(), filesearch_abort(), findnextfile_wrap_reset(), filesearch_abort(),

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

@ -242,7 +242,8 @@ ssize_t ngetdelim(char **lineptr, size_t *n, int delim, FILE *stream)
#ifdef HAVE_REGEX_H #ifdef HAVE_REGEX_H
#ifdef BROKEN_REGEXEC #ifdef BROKEN_REGEXEC
/* Work around a potential segfault in glibc 2.2.3's regexec(). */ /* glibc 2.2.3 brain damage: Work around a potential segfault in
* regexec(). */
int safe_regexec(const regex_t *preg, const char *string, size_t nmatch, int safe_regexec(const regex_t *preg, const char *string, size_t nmatch,
regmatch_t pmatch[], int eflags) regmatch_t pmatch[], int eflags)
{ {