On Thu, Nov 04, 2010 at 10:40:02PM +0100, [email protected] wrote:
> Author: rgheck
> Date: Thu Nov  4 22:40:01 2010
> New Revision: 36092
> URL: http://www.lyx.org/trac/changeset/36092
> 
> Log:
> Typos? Thinkos?
> 
> Modified:
>    lyx-devel/trunk/lib/lyx2lyx/lyx_2_0.py
> 
> Modified: lyx-devel/trunk/lib/lyx2lyx/lyx_2_0.py
> ==============================================================================
> --- lyx-devel/trunk/lib/lyx2lyx/lyx_2_0.py    Thu Nov  4 22:38:32 2010        
> (r36091)
> +++ lyx-devel/trunk/lib/lyx2lyx/lyx_2_0.py    Thu Nov  4 22:40:01 2010        
> (r36092)
> @@ -1779,12 +1779,14 @@
>          usedots = int(val)
>        except:
>          document.warning("Invalid \\use_mathdots value: " + val)
> +        # probably usedots has not been changed, but be safe.
> +        usedots = 1
>  
> -    if mathdots == 0:
> +    if usedots == 0:
>        # do not load case
>        return
>    
> -    if mathdots == 2:
> +    if usedots == 2:
>        # force load case
>        add_to_preamble(["% lyx2lyx mathdots addition", 
> "\\usepackage{mathdots}"])
>        return

I wonder whether such incremental improvements could be combined into
larger commits. I understand that svn is not git and so it might be not
completely trivial, but it sometimes looks a bit like fix-the-fix
commits that are not really worth to end up recorded for eternity.

Andre'

Reply via email to