Moved a semicolon outside of a declaration macro.

This commit is contained in:
Roland Illig 2004-08-15 19:34:37 +00:00
parent 1fe1eb886a
commit 3b421b32bb
2 changed files with 2 additions and 2 deletions

View File

@ -2129,7 +2129,7 @@ void edit_execute_key_command (WEdit *edit, int command, int char_for_insertion)
edit->force |= REDRAW_PAGE;
}
static const char * const shell_cmd[] = SHELL_COMMANDS_i
static const char * const shell_cmd[] = SHELL_COMMANDS_i;
/*
This executes a command at a lower level than macro recording.

View File

@ -158,7 +158,7 @@
it into the text, which is annoying.
*/
#define CK_Pipe_Block(i) (1000+(i))
#define SHELL_COMMANDS_i {"/edit.indent.rc", "/edit.spell.rc", /* and so on */ 0};
#define SHELL_COMMANDS_i {"/edit.indent.rc", "/edit.spell.rc", /* and so on */ 0 }
#define CK_Macro(i) (2000+(i))
#define CK_Last_Macro CK_Macro(0x7FFF)
#else