aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/ScintillaHistory.html5
-rw-r--r--scripts/Face.py3
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html
index d85109be4..fff605d6f 100644
--- a/doc/ScintillaHistory.html
+++ b/doc/ScintillaHistory.html
@@ -489,6 +489,7 @@
</tr><tr>
<td>Pavel Sountsov</td>
<td>Dirk Lorenzen</td>
+ <td>Kasper B. Graversen</td>
</tr>
</table>
<p>
@@ -521,6 +522,10 @@
The Progress lexer now allows comments preceded by a tab.
</li>
<li>
+ Scripts reading Scintilla.iface file include comments for enu and lex definitions.
+ <a href="http://sourceforge.net/p/scintilla/bugs/1829 /">Bug #1829 </a>.
+ </li>
+ <li>
Fix crashes on GTK+ if idle work active when destroyed.
<a href="http://sourceforge.net/p/scintilla/bugs/1827/">Bug #1827</a>.
</li>
diff --git a/scripts/Face.py b/scripts/Face.py
index 05864f17c..3724c8fa8 100644
--- a/scripts/Face.py
+++ b/scripts/Face.py
@@ -112,6 +112,7 @@ class Face:
self.features[name] = {
"FeatureType": featureType,
"Category": currentCategory,
- "Value": value }
+ "Value": value,
+ "Comment": currentComment }
self.order.append(name)