1
1
Этот коммит содержится в:
Miguel de Icaza 1999-01-26 23:46:11 +00:00
родитель 90363066a3
Коммит 9a43865fa6
7 изменённых файлов: 409 добавлений и 715 удалений

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

@ -2399,7 +2399,7 @@ x_create_panel (Dlg_head *h, widget_data parent, WPanel *panel)
evbox, evbox,
NULL, NULL); NULL, NULL);
gtk_box_pack_start (GTK_BOX (hbox), gtk_label_new (_("Location:")), FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), gtk_label_new (_("Location:")), FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX (hbox), cwd, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (hbox), cwd, TRUE, TRUE, 0);
dock = gnome_dock_item_new ("gmc-toolbar1", GNOME_DOCK_ITEM_BEH_EXCLUSIVE | GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL); dock = gnome_dock_item_new ("gmc-toolbar1", GNOME_DOCK_ITEM_BEH_EXCLUSIVE | GNOME_DOCK_ITEM_BEH_NEVER_VERTICAL);
gtk_container_add (GTK_CONTAINER(dock),status_line); gtk_container_add (GTK_CONTAINER(dock),status_line);
gnome_dock_add_item (GNOME_DOCK(GNOME_APP (panel->xwindow)->dock), gnome_dock_add_item (GNOME_DOCK(GNOME_APP (panel->xwindow)->dock),

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

@ -79,7 +79,7 @@
# endif # endif
# endif # endif
# include "regex.h" # include <regex.h>
#endif #endif
@ -123,7 +123,7 @@
# include "src/win.h" # include "src/win.h"
# include "vfs/vfs.h" # include "vfs/vfs.h"
# include "src/menu.h" # include "src/menu.h"
# include "src/regex.h" # include <regex.h>
# define WANT_WIDGETS # define WANT_WIDGETS
# define WIDGET_COMMAND (WIDGET_USER + 10) # define WIDGET_COMMAND (WIDGET_USER + 10)

1110
po/mc.pot

Разница между файлами не показана из-за своего большого размера Загрузить разницу

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

@ -32,7 +32,7 @@ HDRS = color.h file.h mouse.h user.h dialog.h find.h main.h \
help.h profile.h dlg.h option.h tree.h info.h \ help.h profile.h dlg.h option.h tree.h info.h \
widget.h chmod.h cons.saver.h mad.h wtools.h chown.h \ widget.h chmod.h cons.saver.h mad.h wtools.h chown.h \
subshell.h view.h setup.h key.h ext.h boxes.h \ subshell.h view.h setup.h key.h ext.h boxes.h \
hotlist.h layout.h fsusage.h mountlist.h regex.h complete.h \ hotlist.h layout.h fsusage.h mountlist.h eregex.h complete.h \
myslang.h command.h cmd.h tty.h fs.h panelize.h achown.h \ myslang.h command.h cmd.h tty.h fs.h panelize.h achown.h \
learn.h listmode.h features.inc background.h \ learn.h listmode.h features.inc background.h \
x.h textconf.h i18n.h findme.h popt.h filegui.h keys.h xtty.h \ x.h textconf.h i18n.h findme.h popt.h filegui.h keys.h xtty.h \

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

@ -475,6 +475,7 @@ extern char *re_comp _RE_ARGS ((const char *));
extern int re_exec _RE_ARGS ((const char *)); extern int re_exec _RE_ARGS ((const char *));
#endif #endif
#if 0
/* POSIX compatibility. */ /* POSIX compatibility. */
extern int regcomp _RE_ARGS ((regex_t *preg, const char *pattern, int cflags)); extern int regcomp _RE_ARGS ((regex_t *preg, const char *pattern, int cflags));
extern int regexec extern int regexec
@ -484,6 +485,7 @@ extern size_t regerror
_RE_ARGS ((int errcode, const regex_t *preg, char *errbuf, _RE_ARGS ((int errcode, const regex_t *preg, char *errbuf,
size_t errbuf_size)); size_t errbuf_size));
extern void regfree _RE_ARGS ((regex_t *preg)); extern void regfree _RE_ARGS ((regex_t *preg));
#endif
#endif /* not __REGEXP_LIBRARY_H__ */ #endif /* not __REGEXP_LIBRARY_H__ */

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

@ -82,7 +82,7 @@
#include <time.h> #include <time.h>
#include <utime.h> #include <utime.h>
#include "mad.h" #include "mad.h"
#include "regex.h" #include "eregex.h"
#include "util.h" #include "util.h"
#include "dialog.h" #include "dialog.h"
#include "global.h" #include "global.h"

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

@ -149,7 +149,7 @@ init_syntax_once ()
#endif /* not emacs */ #endif /* not emacs */
/* Get the interface, including the syntax bits. */ /* Get the interface, including the syntax bits. */
#include "regex.h" #include "eregex.h"
/* isalpha etc. are used for the character classes. */ /* isalpha etc. are used for the character classes. */
#include <ctype.h> #include <ctype.h>