~ubuntu-branches/ubuntu/natty/geany/natty

« back to all changes in this revision

Viewing changes to scintilla/DocumentAccessor.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2010-08-07 03:23:12 UTC
  • mfrom: (1.4.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20100807032312-ot70ac9d50cn79we
Tags: upstream-0.19
ImportĀ upstreamĀ versionĀ 0.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
187
187
        indent += SC_FOLDLEVELBASE;
188
188
        // if completely empty line or the start of a comment...
189
189
        if ((ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r') ||
190
 
                (pfnIsCommentLeader && (*pfnIsCommentLeader)(*this, pos, end-pos)) )
 
190
                (pfnIsCommentLeader && (*pfnIsCommentLeader)(*this, pos, end-pos)))
191
191
                return indent | SC_FOLDLEVELWHITEFLAG;
192
192
        else
193
193
                return indent;