diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-07-25 17:20:40 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-07-25 17:20:40 +0000 |
commit | ba597da72e8a548403f2a86cbe864f6f8c087397 (patch) | |
tree | 2c40dc91a642bc993036bc4c6b2a0b062763f980 /tmux.h | |
parent | 546838ee6567d5fde03571286199068d5ec9b608 (diff) | |
download | rtmux-ba597da72e8a548403f2a86cbe864f6f8c087397.tar.gz rtmux-ba597da72e8a548403f2a86cbe864f6f8c087397.tar.bz2 rtmux-ba597da72e8a548403f2a86cbe864f6f8c087397.zip |
Environment variables in configuration file.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.178 2008-07-24 22:21:28 nicm Exp $ */ +/* $Id: tmux.h,v 1.179 2008-07-25 17:20:40 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1025,7 +1025,7 @@ extern const struct cmd_entry cmd_unbind_key_entry; extern const struct cmd_entry cmd_unlink_window_entry; /* cmd-string.c */ -struct cmd *cmd_string_parse(const char *, char **); +int cmd_string_parse(const char *, struct cmd **, char **); /* cmd-generic.c */ #define CMD_TARGET_WINDOW_USAGE "[-t target-window]" |