mirror of https://github.com/MidnightCommander/mc
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:
parent
871991dda0
commit
f90725ad0d
|
@ -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 */
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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: */
|
||||
|
||||
|
|
|
@ -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 **************************************************/
|
||||
|
|
|
@ -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 **********************************************/
|
||||
|
||||
|
|
|
@ -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 **********************************************/
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 () */
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue