version 1.60 | | version 1.61 |
---|
| | |
/* | | /* |
* static char *rcsid_commands_c = | | * static char *rcsid_commands_c = |
* "$Id: commands.c,v 1.60 2006/03/18 17:15:25 ryo_saeba Exp $"; | | * "$Id: commands.c,v 1.61 2006/05/05 09:26:34 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* Actually return value is used as can-repeat -flag | | * Actually return value is used as can-repeat -flag |
*/ | | */ |
| | |
int parse_string(object *op, char *str) | | static int parse_string(object *op, char *str) |
{ | | { |
command_function f; | | command_function f; |
char *cp; | | char *cp; |
| | |
/** this function handles splitting up a ; separated | | /** this function handles splitting up a ; separated |
* compound command into sub-commands: it is recursive. | | * compound command into sub-commands: it is recursive. |
*/ | | */ |
int parse_command(object *op, char *str) { | | static int parse_command(object *op, char *str) { |
char *tmp,*tmp2; | | char *tmp,*tmp2; |
int i; | | int i; |
/* if it's a keybinding command, ignore semicolons */ | | /* if it's a keybinding command, ignore semicolons */ |