mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 09:19:24 +03:00
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
|
#endif
|
||||||
|
|
||||||
#ifdef USE_INTERNAL_EDIT
|
#ifdef USE_INTERNAL_EDIT
|
||||||
# include "../edit/edit.h"
|
# include "../src/editor/edit.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* If set and you don't have subshell support,then C-o will give you a shell */
|
/* 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/dialog.h" /* cb_ret_t */
|
||||||
#include "../src/keybind.h" /* global_keymap_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_SCANF (1 << 0)
|
||||||
#define SEARCH_DIALOG_OPTION_NO_REGEX (1 << 1)
|
#define SEARCH_DIALOG_OPTION_NO_REGEX (1 << 1)
|
||||||
|
@ -67,12 +67,12 @@
|
|||||||
|
|
||||||
#include "../vfs/vfs.h"
|
#include "../vfs/vfs.h"
|
||||||
|
|
||||||
#include "../edit/edit-impl.h"
|
#include "../src/editor/edit-impl.h"
|
||||||
#include "../edit/edit.h"
|
#include "../src/editor/edit.h"
|
||||||
#include "../edit/editlock.h"
|
#include "../src/editor/editlock.h"
|
||||||
#include "../edit/edit-widget.h"
|
#include "../src/editor/edit-widget.h"
|
||||||
#include "../edit/editcmd_dialogs.h"
|
#include "../src/editor/editcmd_dialogs.h"
|
||||||
#include "../edit/etags.h"
|
#include "../src/editor/etags.h"
|
||||||
|
|
||||||
/* globals: */
|
/* globals: */
|
||||||
|
|
||||||
|
@ -42,9 +42,9 @@
|
|||||||
#include "../src/history.h"
|
#include "../src/history.h"
|
||||||
#include "../src/charsets.h"
|
#include "../src/charsets.h"
|
||||||
|
|
||||||
#include "../edit/edit-widget.h"
|
#include "../src/editor/edit-widget.h"
|
||||||
#include "../edit/etags.h"
|
#include "../src/editor/etags.h"
|
||||||
#include "../edit/editcmd_dialogs.h"
|
#include "../src/editor/editcmd_dialogs.h"
|
||||||
|
|
||||||
|
|
||||||
/*** global variables **************************************************/
|
/*** global variables **************************************************/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#ifndef MC__EDITCMD_DIALOGS_H
|
#ifndef MC__EDITCMD_DIALOGS_H
|
||||||
#define MC__EDITCMD_DIALOGS_H
|
#define MC__EDITCMD_DIALOGS_H
|
||||||
|
|
||||||
#include "../edit/edit.h"
|
#include "../src/editor/edit.h"
|
||||||
|
|
||||||
/*** typedefs(not structures) and defined constants **********************************************/
|
/*** typedefs(not structures) and defined constants **********************************************/
|
||||||
|
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
#include "../src/global.h"
|
#include "../src/global.h"
|
||||||
#include "../src/util.h" /* canonicalize_pathname() */
|
#include "../src/util.h" /* canonicalize_pathname() */
|
||||||
#include "../edit/etags.h"
|
#include "../src/editor/etags.h"
|
||||||
|
|
||||||
/*** file scope functions **********************************************/
|
/*** file scope functions **********************************************/
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@
|
|||||||
#endif /* ENABLE_VFS_SMB */
|
#endif /* ENABLE_VFS_SMB */
|
||||||
|
|
||||||
#ifdef USE_INTERNAL_EDIT
|
#ifdef USE_INTERNAL_EDIT
|
||||||
# include "../edit/edit.h"
|
# include "../src/editor/edit.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_CHARSET
|
#ifdef HAVE_CHARSET
|
||||||
|
@ -67,7 +67,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef USE_INTERNAL_EDIT
|
#ifdef USE_INTERNAL_EDIT
|
||||||
# include "../edit/edit.h"
|
# include "../src/editor/edit.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "../src/strutil.h" /* str_isutf8 () */
|
#include "../src/strutil.h" /* str_isutf8 () */
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
#include "../vfs/vfs.h"
|
#include "../vfs/vfs.h"
|
||||||
|
|
||||||
#include "../edit/edit.h" /* WEdit, BLOCK_FILE */
|
#include "../src/editor/edit.h" /* WEdit, BLOCK_FILE */
|
||||||
|
|
||||||
/* For the simple listbox manager */
|
/* For the simple listbox manager */
|
||||||
#include "dialog.h"
|
#include "dialog.h"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#ifndef MC_USER_H
|
#ifndef MC_USER_H
|
||||||
#define MC_USER_H
|
#define MC_USER_H
|
||||||
|
|
||||||
#include "../edit/edit.h"
|
#include "../src/editor/edit.h"
|
||||||
|
|
||||||
void user_menu_cmd (WEdit *edit_widget);
|
void user_menu_cmd (WEdit *edit_widget);
|
||||||
char *expand_format (WEdit *edit_widget, char c, int quote);
|
char *expand_format (WEdit *edit_widget, char c, int quote);
|
||||||
|
Loading…
Reference in New Issue
Block a user