Re: [dev] [dwm] Fix unsigned preserving in drw_text

2013-06-23 Thread Anselm R Garbe
On 21 June 2013 13:54, Jochen Sprickerhof wrote: > I found some drawing errors in my dwm bar. Would be great to have the > attached patch upstream to fix them. Thanks, applied. -Anselm

[dev] [st] [PATCH] Remove long text being cropped/wrapped to standard 80x24 on launch.

2013-06-23 Thread Alexander Sedov
To be more specific, now tty creation is delayed until X window is actually mapped; last ConfigureNotify before mapping determines initial tty size. Please report problems if there are any. --- TODO |4 st.c | 21 ++--- 2 files changed, 18 insertions(+), 7 deletions(-)

Re: [dev] Re: slcon 2013

2013-06-23 Thread Maximilian Dietrich
On Sun, Jun 23, 2013 at 05:16:55PM +0200, Jochen Sprickerhof wrote: > * Maximilian Dietrich [2013-06-23 14:06]: > > Thank you for your work. I'm really interested in the talks. Would you > > mind linking the respective yt channel here or on the website? > > http://www.youtube.com/watch?v=qvmYo7Bh

Re: [dev] Re: slcon 2013

2013-06-23 Thread Jochen Sprickerhof
* Maximilian Dietrich [2013-06-23 14:06]: > Thank you for your work. I'm really interested in the talks. Would you > mind linking the respective yt channel here or on the website? http://www.youtube.com/watch?v=qvmYo7Bhm0Y

Re: [dev] Re: slcon 2013

2013-06-23 Thread Maximilian Dietrich
On Sun, Jun 23, 2013 at 08:17:30AM +0200, Anselm R Garbe wrote: > I decided to upload the talks to youtube. The first talk will be > available in a couple of minutes, however it takes about 11 hours per > talk to be uploaded and processed... So all the talks will be > available next weekend approx.

Re: [dev] [PATCH v2] Fix selection clearing

2013-06-23 Thread Roberto E. Vargas Caballero
Ignore this mail, it was error.

[dev] [PATCH v2] Fix match function bugs

2013-06-23 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" There were two problems with match denfinition. 1) There was a forward declaration in the form: static inline bool match(uint, uint); but later the function was defined as: inline bool match(uint mask, uint state) { This causes that

[dev] [PATCH v2] Fix selection clearing

2013-06-23 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" The way st knows if there is a selection activated is checking if sel.ob.x is equal to -1. In some parts of the code the way of disabling the selection was only setting it to -1, but after it you can't be sure if the selection is clearing from the terminal repr

Re: [dev] [PATCH] Fix match function bugs

2013-06-23 Thread Roberto E. Vargas Caballero
Uhmmm, the patch is not good because it breaks a lot of configurations (when we use XK_ANY_MOD). I am going to send a new version of the patch. On Sun, Jun 23, 2013 at 10:44:46AM +0200, Roberto E. Vargas Caballero wrote: > From: "Roberto E. Vargas Caballero" > > There were two problems with mat

[dev] [PATCH] Fix selection clearing

2013-06-23 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" The way st knows if there is a selection activated is checking if sel.ob.x is equal to -1. In some parts of the code the way of disabling the selection was only setting it to -1, but after it you can't be sure if the selection is clearing from the terminal repr

[dev] [PATCH] Remove unneded call to draw

2013-06-23 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" draw is the function which update the Xwindow with the information st has, and it is designed in a way that it must be called once in the main loop (run function), and calling it in other places it is a waste of time. --- st.c |1 - 1 file changed, 1 delet

[dev] [PATCH] Fix match function bugs

2013-06-23 Thread Roberto E. Vargas Caballero
From: "Roberto E. Vargas Caballero" There were two problems with match denfinition. 1) There was a forward declaration in the form: static inline bool match(uint, uint); but later the function was defined as: inline bool match(uint mask, uint state) { This causes that