Hi,

I noticed that client_width and client_height were the wrong way around 
in format.c (in v1.6)

Here's a trivial fix.

Steve


Index: format.c
===================================================================
--- format.c    (revision 2691)
+++ format.c    (working copy)
@@ -303,8 +303,8 @@
         time_t   t;

         format_add(ft, "client_cwd", "%s", c->cwd);
-       format_add(ft, "client_height", "%u", c->tty.sx);
-       format_add(ft, "client_width", "%u", c->tty.sy);
+       format_add(ft, "client_width", "%u", c->tty.sx);
+       format_add(ft, "client_height", "%u", c->tty.sy);
         format_add(ft, "client_tty", "%s", c->tty.path);
         format_add(ft, "client_termname", "%s", c->tty.termname);

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users

Reply via email to