# HG changeset patch # User Pantxo Diribarne # Date 1656091462 -7200 # Node ID 01e4f3882f542b12b93ae75da1f44adc80172ac8 # Parent bbb59cc6698c6c10db40dcd49bb3bf746ca75cf1 Fix regression with \color[rgb] tex pattern (bug #62668) * oct-tex-lexer.ll.in: fix "\color[rgb]" pattern accidentally altered with cset fa65184b7c76. diff -r bbb59cc6698c -r 01e4f3882f54 libinterp/corefcn/oct-tex-lexer.in.ll --- a/libinterp/corefcn/oct-tex-lexer.in.ll Sat Jun 25 16:40:36 2022 -0400 +++ b/libinterp/corefcn/oct-tex-lexer.in.ll Fri Jun 24 19:24:22 2022 +0200 @@ -140,7 +140,7 @@ return FONTSIZE; } -"\\color[m_rgb]" { +"\\color[rgb]" { BEGIN (MAYBE_NUM_MODE); return COLOR_RGB; }