From 413bc9e0701905b4200edd69cdb184689fbe445a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Thu, 27 Apr 2006 22:52:09 +0000 Subject: [PATCH] fixed naming of parser git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@283 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- tagmanager/tex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tagmanager/tex.c b/tagmanager/tex.c index 710e1103..ec59cbb8 100644 --- a/tagmanager/tex.c +++ b/tagmanager/tex.c @@ -219,8 +219,8 @@ static void findTeXTags(void) extern parserDefinition* TexParser (void) { - static const char *const extensions [] = { "tex", "sty", "cls", NULL }; - parserDefinition * def = parserNew ("Tex"); + static const char *const extensions [] = { "tex", "sty", "idx", NULL }; + parserDefinition * def = parserNew ("LaTeX"); def->kinds = TeXKinds; def->kindCount = KIND_COUNT (TeXKinds); def->extensions = extensions;