tags 546585 + pending
thanks
Dear maintainer,
I've prepared an NMU for cssed (versioned as 0.4.0-2.1) and uploaded it
to DELAYED/2. The patch is from Ubuntu as it has been reported in the
bug log.
Regards.
--
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..| . |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...........| ..: |.... Je dis tu à tous ceux que j'aime
diff -u cssed-0.4.0/debian/changelog cssed-0.4.0/debian/changelog
--- cssed-0.4.0/debian/changelog
+++ cssed-0.4.0/debian/changelog
@@ -1,3 +1,11 @@
+cssed (0.4.0-2.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix invalid const char* conversion, apply Ubuntu patch.
+ (Closes: #546585)
+
+ -- Stefano Zacchiroli <[email protected]> Sun, 20 Dec 2009 11:55:15 +0100
+
cssed (0.4.0-2) unstable; urgency=low
* New Maintainer (Closes: #387435)
only in patch2:
unchanged:
--- cssed-0.4.0.orig/scintilla/src/LexCaml.cxx
+++ cssed-0.4.0/scintilla/src/LexCaml.cxx
@@ -273,7 +273,7 @@
case SCE_CAML_OPERATOR: {
// [try to] interpret as [additional] operator char
- char* o = 0;
+ const char* o = 0;
if (iscaml(ch) || isspace(ch) /* ident or whitespace */
|| ((o = strchr(")]};,\'\"`#", ch)) != 0)/* "termination" chars */
|| !strchr("!$%&*+-./:<=>?...@^|~", ch)/* "operator" chars */) {