Re: 'make' from a fresh git clone.

2013-10-11 Thread Sharon Kimble
On Fri, 11 Oct 2013 19:28:41 +0100 Thomas Adam wrote: > What system is this on? From my sig line - Debian stable, Fluxbox 1.3.5 :) Thanks Sharon. > > Thomas Adam > On 11 Oct 2013 19:24, "Sharon Kimble" wrote: > > > When 'make'ing tmux from a fresh git clone tonight, i got this error > > repo

Re: 'make' from a fresh git clone.

2013-10-11 Thread Thomas Adam
Fixed. Thanks, Thomas On 11 October 2013 19:23, Sharon Kimble wrote: > When 'make'ing tmux from a fresh git clone tonight, i got this error > report - > [boudiccas:Fri Oct 11 19:18:36 @~/git/tmux]$ [2702]>; make > depbase=`echo format.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ > gcc -DPACK

Re: 'make' from a fresh git clone.

2013-10-11 Thread Thomas Adam
What system is this on? Thomas Adam On 11 Oct 2013 19:24, "Sharon Kimble" wrote: > When 'make'ing tmux from a fresh git clone tonight, i got this error > report - > [boudiccas:Fri Oct 11 19:18:36 @~/git/tmux]$ [2702]>; make > depbase=`echo format.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ >

'make' from a fresh git clone.

2013-10-11 Thread Sharon Kimble
When 'make'ing tmux from a fresh git clone tonight, i got this error report - [boudiccas:Fri Oct 11 19:18:36 @~/git/tmux]$ [2702]>; make depbase=`echo format.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\ gcc -DPACKAGE_NAME=\"tmux\" -DPACKAGE_TARNAME=\"tmux\" -DPACKAGE_VERSION=\"1.9\" -DPACKAGE_S

Re: window_layout fields

2013-10-11 Thread Nicholas Marriott
You can use the entire output after server restart, same as you do before. On Fri, Oct 11, 2013 at 01:41:26PM +0300, ??? ??? wrote: >I am trying to understand the output of "tmux -list-windows -F >'#{window_layout}'". >The output is something like below: >bb32,151x78,

window_layout fields

2013-10-11 Thread Αριστοτέλης Πανάρας
I am trying to understand the output of "tmux -list-windows -F '#{window_layout}'". The output is something like below: bb32,151x78,0,0{75x78,0,0,1,75x78,76,0,2} I understand that the normal fields are size,x,y,pane_id. Using that output with "tmux select-layout" succeeds. However, if I omit the fi

Re: [PATCH] Restore unbind-key when not using -a

2013-10-11 Thread Nicholas Marriott
Applied, thanks. On Mon, Oct 07, 2013 at 01:54:03AM -0500, Chris Johnsen wrote: > In a36da3a (Remove the barely-used and unnecessary command check() > function., 2013-08-21) an extra, unconditional, early return was > accidentally inserted when handling unbind-key without the "-a" > option. > > R

Re: Calling external programs in statusline creates pauses over time

2013-10-11 Thread Nicholas Marriott
Oops, looks like osdep_get_name can fail on Linux. Try this instead: diff --git a/format.c b/format.c index a7f1fde..118a8df 100644 --- a/format.c +++ b/format.c @@ -353,15 +353,20 @@ format_expand(struct format_tree *ft, const char *fmt) char * format_get_command(struct window_pane *wp) { -