Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Thu, 02 Sep 2021 15:23:17 UTC Commit: 935e5d080d72798251df09117ea5e894266d8e03 https://github.com/geany/geany-plugins/commit/935e5d080d72798251df09117ea5e8...
Log Message: ----------- vimode: move excmds.c/h to cmds directory so we can include headers from there
Modified Paths: -------------- vimode/src/Makefile.am vimode/src/cmds/excmds.c vimode/src/cmds/excmds.h
Modified: vimode/src/Makefile.am 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -36,8 +36,8 @@ vi_srcs = \ cmds/special.c \ cmds/edit.h \ cmds/edit.c \ - excmds/excmds.h \ - excmds/excmds.c + cmds/excmds.h \ + cmds/excmds.c
vimode_la_SOURCES = \ backends/backend-geany.c \
Modified: vimode/src/cmds/excmds.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -16,7 +16,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
-#include "excmds/excmds.h" +#include "cmds/excmds.h" #include "utils.h"
void excmd_save(CmdContext *c, ExCmdParams *p)
Modified: vimode/src/cmds/excmds.h 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -16,8 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
-#ifndef __VIMODE_EXCMDS_EXCMDS_H__ -#define __VIMODE_EXCMDS_EXCMDS_H__ +#ifndef __VIMODE_CMDS_EXCMDS_H__ +#define __VIMODE_CMDS_EXCMDS_H__
#include "excmd-params.h" #include "context.h"
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org