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,9 @@ +cssed (0.4.0-3ubuntu2) karmic; urgency=low + + * Fix FTBFS due to invalid const char * conversion (LP: #428852). + + -- Ilya Barygin Sun, 13 Sep 2009 17:11:01 +0400 + cssed (0.4.0-3ubuntu1) gutsy; urgency=low * Provided an icon for the menu entry (LP: #62177) 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 */) {