aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2015-10-18 20:42:42 +0000
committernicm <nicm>2015-10-18 20:42:42 +0000
commit174a2ad731055f97838290226d656813143620ca (patch)
treecc063339064f0dda959e4d7f81416d1691c5de37 /tmux.h
parent9c601ebde81a3965541161499ebce0b5e5f1122f (diff)
downloadrtmux-174a2ad731055f97838290226d656813143620ca.tar.gz
rtmux-174a2ad731055f97838290226d656813143620ca.tar.bz2
rtmux-174a2ad731055f97838290226d656813143620ca.zip
Pass current directory as a string rather than a file descriptor because
pledge doesn't let us pass directory file descriptors.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 5bf9b39b..72495100 100644
--- a/tmux.h
+++ b/tmux.h
@@ -395,11 +395,12 @@ enum msgtype {
MSG_IDENTIFY_FLAGS = 100,
MSG_IDENTIFY_TERM,
MSG_IDENTIFY_TTYNAME,
- MSG_IDENTIFY_CWD,
+ MSG_IDENTIFY_OLDCWD, /* unused */
MSG_IDENTIFY_STDIN,
MSG_IDENTIFY_ENVIRON,
MSG_IDENTIFY_DONE,
MSG_IDENTIFY_CLIENTPID,
+ MSG_IDENTIFY_CWD,
MSG_COMMAND = 200,
MSG_DETACH,