Re: [PATCH v11 03/13] ref-filter: introduce ref_formatting_state

2015-08-17 Thread Karthik Nayak
On Mon, Aug 17, 2015 at 5:01 AM, Eric Sunshine sunsh...@sunshineco.com wrote: On Sat, Aug 15, 2015 at 2:00 PM, Karthik Nayak karthik@gmail.com wrote: Introduce ref_formatting_state which will hold the formatted output strbuf and is used for nesting of modifier atoms. Signed-off-by:

Re: [PATCH v11 03/13] ref-filter: introduce ref_formatting_state

2015-08-16 Thread Eric Sunshine
On Sun, Aug 16, 2015 at 7:31 PM, Eric Sunshine sunsh...@sunshineco.com wrote: On Sat, Aug 15, 2015 at 2:00 PM, Karthik Nayak karthik@gmail.com wrote: +struct ref_formatting_state { + struct strbuf output; + struct ref_formatting_state *prev; Upon initial read-through of this

[PATCH v11 03/13] ref-filter: introduce ref_formatting_state

2015-08-15 Thread Karthik Nayak
Introduce ref_formatting_state which will hold the formatted output strbuf and is used for nesting of modifier atoms. Mentored-by: Christian Couder christian.cou...@gmail.com Mentored-by: Matthieu Moy matthieu@grenoble-inp.fr Signed-off-by: Karthik Nayak karthik@gmail.com ---