Code indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2013-04-12 09:40:55 +04:00
parent 02265113cd
commit 923d379d5a
2 changed files with 6 additions and 3 deletions

View File

@ -411,7 +411,8 @@ exec_extension_cd (void)
/* --------------------------------------------------------------------------------------------- */
static vfs_path_t *
exec_extension (void *target, const vfs_path_t * filename_vpath, const char *lc_data, int start_line)
exec_extension (void *target, const vfs_path_t * filename_vpath, const char *lc_data,
int start_line)
{
char *shell_string, *export_variables;
vfs_path_t *script_vpath = NULL;
@ -1047,7 +1048,8 @@ regex_command_for (void *target, const vfs_path_t * filename_vpath, const char *
{
vfs_path_t *sv;
sv = exec_extension (target, filename_vpath, r + 1, view_at_line_number);
sv = exec_extension (target, filename_vpath, r + 1,
view_at_line_number);
if (script_vpath != NULL)
*script_vpath = sv;
else

View File

@ -45,7 +45,8 @@ extern mcview_t *mcview_new (int y, int x, int lines, int cols, gboolean is_pane
*/
extern gboolean mcview_viewer (const char *command, const vfs_path_t * file_vpath, int start_line);
extern gboolean mcview_load (mcview_t * view, const char *command, const char *file, int start_line);
extern gboolean mcview_load (mcview_t * view, const char *command, const char *file,
int start_line);
/*** inline functions ****************************************************************************/
#endif /* MC__VIEWER_H */