Re: [PATCH obvious/diagnostics] Honor override_column when printing the caret

2014-12-04 Thread Manuel López-Ibáñez
On 3 December 2014 at 09:48, Dodji Seketeli wrote: > Manuel López-Ibáñez writes: > >> libcpp uses diagnostic->override_column to give a custom column number >> to diagnostics. This is taken into account when building the prefix, >> but it was missing when placing the caret. >> >> Before: >> >> /h

Re: [PATCH obvious/diagnostics] Honor override_column when printing the caret

2014-12-03 Thread Dodji Seketeli
Manuel López-Ibáñez writes: > libcpp uses diagnostic->override_column to give a custom column number > to diagnostics. This is taken into account when building the prefix, > but it was missing when placing the caret. > > Before: > > /home/manuel/override_column.c:1:4: warning: "/*" within comment

[PATCH obvious/diagnostics] Honor override_column when printing the caret

2014-12-02 Thread Manuel López-Ibáñez
libcpp uses diagnostic->override_column to give a custom column number to diagnostics. This is taken into account when building the prefix, but it was missing when placing the caret. Before: /home/manuel/override_column.c:1:4: warning: "/*" within comment [-Wcomment] /* /* */ ^ After: /home/m