Changes in sources matched with movement of $(srcdir)/edit into $(srcdir)/src/editor

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
Slava Zanko 2010-01-07 00:31:45 +02:00
parent 871991dda0
commit f90725ad0d
10 changed files with 17 additions and 17 deletions

View File

@ -87,7 +87,7 @@
#endif
#ifdef USE_INTERNAL_EDIT
# include "../edit/edit.h"
# include "../src/editor/edit.h"
#endif
/* If set and you don't have subshell support,then C-o will give you a shell */

View File

@ -35,7 +35,7 @@
#include "../src/dialog.h" /* cb_ret_t */
#include "../src/keybind.h" /* global_keymap_t */
#include "../edit/edit.h"
#include "../src/editor/edit.h"
#define SEARCH_DIALOG_OPTION_NO_SCANF (1 << 0)
#define SEARCH_DIALOG_OPTION_NO_REGEX (1 << 1)

View File

@ -67,12 +67,12 @@
#include "../vfs/vfs.h"
#include "../edit/edit-impl.h"
#include "../edit/edit.h"
#include "../edit/editlock.h"
#include "../edit/edit-widget.h"
#include "../edit/editcmd_dialogs.h"
#include "../edit/etags.h"
#include "../src/editor/edit-impl.h"
#include "../src/editor/edit.h"
#include "../src/editor/editlock.h"
#include "../src/editor/edit-widget.h"
#include "../src/editor/editcmd_dialogs.h"
#include "../src/editor/etags.h"
/* globals: */

View File

@ -42,9 +42,9 @@
#include "../src/history.h"
#include "../src/charsets.h"
#include "../edit/edit-widget.h"
#include "../edit/etags.h"
#include "../edit/editcmd_dialogs.h"
#include "../src/editor/edit-widget.h"
#include "../src/editor/etags.h"
#include "../src/editor/editcmd_dialogs.h"
/*** global variables **************************************************/

View File

@ -1,7 +1,7 @@
#ifndef MC__EDITCMD_DIALOGS_H
#define MC__EDITCMD_DIALOGS_H
#include "../edit/edit.h"
#include "../src/editor/edit.h"
/*** typedefs(not structures) and defined constants **********************************************/

View File

@ -40,7 +40,7 @@
#include "../src/global.h"
#include "../src/util.h" /* canonicalize_pathname() */
#include "../edit/etags.h"
#include "../src/editor/etags.h"
/*** file scope functions **********************************************/

View File

@ -92,7 +92,7 @@
#endif /* ENABLE_VFS_SMB */
#ifdef USE_INTERNAL_EDIT
# include "../edit/edit.h"
# include "../src/editor/edit.h"
#endif
#ifdef HAVE_CHARSET

View File

@ -67,7 +67,7 @@
#endif
#ifdef USE_INTERNAL_EDIT
# include "../edit/edit.h"
# include "../src/editor/edit.h"
#endif
#include "../src/strutil.h" /* str_isutf8 () */

View File

@ -44,7 +44,7 @@
#include "../vfs/vfs.h"
#include "../edit/edit.h" /* WEdit, BLOCK_FILE */
#include "../src/editor/edit.h" /* WEdit, BLOCK_FILE */
/* For the simple listbox manager */
#include "dialog.h"

View File

@ -6,7 +6,7 @@
#ifndef MC_USER_H
#define MC_USER_H
#include "../edit/edit.h"
#include "../src/editor/edit.h"
void user_menu_cmd (WEdit *edit_widget);
char *expand_format (WEdit *edit_widget, char c, int quote);