Revision: 653
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=653&view=rev
Author: frlan
Date: 2009-05-17 21:33:20 +0000 (Sun, 17 May 2009)
Log Message:
-----------
GeanyLaTeX: Update of TODO and remove estimated release numbers from list.
Modified Paths:
--------------
trunk/geanylatex/TODO
Modified: trunk/geanylatex/TODO
===================================================================
--- trunk/geanylatex/TODO 2009-05-17 21:09:23 UTC (rev 652)
+++ trunk/geanylatex/TODO 2009-05-17 21:33:20 UTC (rev 653)
@@ -1,26 +1,16 @@
TODO
************
- ROADMAP/TODO
-*********************
-
-for 0.4
* Improving support for bibTeX
* Parsing of *.bib
* Inserting of \cite
* Dialog for inserting bibTeX entries
-* Adding support for diff. letter classes
+* Wizard:
+ * Adding support for diff. letter classes
+ * Make plugin use customisable templates
* Replacing of environments
-
-for 0.5
* Parsing document for »TOC«
* Navigation throught document
* "Graphical" support while using \ref, \pageref ...
-
-
- UNSCHEDULED
-********************
-
-* Make plugin use customizahle templates
* Code examples for very common problems
* Make special characters extensible through files
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 647
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=647&view=rev
Author: eht16
Date: 2009-05-14 19:59:07 +0000 (Thu, 14 May 2009)
Log Message:
-----------
Update Pascal styles as they changed in Scintilla.
Modified Paths:
--------------
trunk/spellcheck/ChangeLog
trunk/spellcheck/src/speller.c
Modified: trunk/spellcheck/ChangeLog
===================================================================
--- trunk/spellcheck/ChangeLog 2009-05-14 19:55:43 UTC (rev 646)
+++ trunk/spellcheck/ChangeLog 2009-05-14 19:59:07 UTC (rev 647)
@@ -3,6 +3,8 @@
* src/gui.c, src/scplugin.c, src/gui.h:
Update the label of the "Default" menu item if the default language
has been changed.
+ * src/speller.c:
+ Update Pascal styles as they changed in Scintilla.
2009-05-02 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/spellcheck/src/speller.c
===================================================================
--- trunk/spellcheck/src/speller.c 2009-05-14 19:55:43 UTC (rev 646)
+++ trunk/spellcheck/src/speller.c 2009-05-14 19:59:07 UTC (rev 647)
@@ -502,8 +502,29 @@
}
break;
}
+#ifdef SCE_PAS_DEFAULT
+ case SCLEX_PASCAL:
+ {
+ switch (style)
+ {
+ case SCE_PAS_DEFAULT:
+ case SCE_PAS_COMMENT:
+ case SCE_PAS_COMMENT2:
+ case SCE_PAS_COMMENTLINE:
+ case SCE_PAS_STRING:
+ case SCE_PAS_CHARACTER:
+ return TRUE;
+ default:
+ return FALSE;
+ }
+ break;
+ }
+
+#endif
case SCLEX_CPP:
+#ifndef SCE_PAS_DEFAULT
case SCLEX_PASCAL:
+#endif
{
switch (style)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.