> Please don't use expressions with side-effects like m++ in function
> arguments, it's too easy to miss.
Ok. I've attached a new patch that meets your request.
diff --git a/input.c b/input.c
index 259fad1..23804b9 100644
--- a/input.c
+++ b/input.c
@@ -74,6 +74,7 @@ void input_csi_dispatch_rm(s
Found a solution which worked:
http://superuser.com/questions/279169/tmux-died-and-says-no-sessions-is-there-any-way-to-recover.
Sorry for the noise.
--
WatchGuard Dimension instantly turns raw network data into actionable
Sorry if this is a dumb question but I couldn't find anything obvious
after searching online. I had a tmux session running on a Linux host
(inside a VNC session). I detached that tmux session, killed the VNC
server and started a new VNC server.
But a 'tmux ls' says 'failed to connect to server'. W
Got it from source forge repository. tmux.sourceforge.net
I manually inserted the lines (into the dev version fwiw) and got it
working and it gives me 256 colors in a tty! So that's wonderful :-)
Seriously, thank you very much.
just checked and patch -l works as well.
Assuming there aren't an
Where did you get git code from?
Also try patch -l which might work if your mailer mangled the spaces.
Original message
From: Lawrence Jacob Siebert
Date: 30/01/2014 10:30 (GMT+00:00)
To: Nicholas Marriott
,tmux-users@lists.sourceforge.net
Subject: Re: 256 colors in tty c
Hi, sorry for the late response.
I get a patch failure on hunk #1 with both the 1.8 code and the development
version of the code.
I assume patch < fileWithYourPatch should work, right?
Thanks,
Lawrence
About Me: http://about.me/lawrencesiebert
Constantly Coding: http://constantcoding.blogspot.
Please don't use expressions with side-effects like m++ in function
arguments, it's too easy to miss.
On Wed, Jan 29, 2014 at 05:53:19PM -0600, J Raynor wrote:
> > Take a look at this instead which a) uses a function like CSI, SM etc b)
> > don't increment m inside function arguments.
>
> This w