~ubuntu-branches/ubuntu/trusty/mysql-workbench/trusty

« back to all changes in this revision

Viewing changes to ext/scintilla/lexers/LexScriptol.cxx

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-06-05 09:13:55 UTC
  • mfrom: (5.1.5 experimental)
  • Revision ID: package-import@ubuntu.com-20130605091355-lz0oqppmlovk587y
Tags: 5.2.47+dfsg-1
* Upload to unstable.
* New patch to get libpython flags using `python-config`
  (Closes: #710627).
* Build-Depends:
  - python-all-dev
  + python-dev (provides `python-config`)
  - libboost-dev
  + libboost1.53-dev | libboost-dev (needed to avoid FTBFS since
    libmysqlcppconn depends on boost1.53 which conflicts with older
    boost that is pulled by libboost-dev).
* rules: added "-v" to `mv` command (more build-time verbosity).
* rules: get-orig-source improvements.
* Dropped unused lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
368
368
        int state = initStyle & 31;
369
369
        int spaceFlags = 0;
370
370
        int indentCurrent = styler.IndentAmount(lineCurrent, &spaceFlags, IsSolComment);
371
 
        if ((state == SCE_SCRIPTOL_TRIPLE))
 
371
        if (state == SCE_SCRIPTOL_TRIPLE)
372
372
             indentCurrent |= SC_FOLDLEVELWHITEFLAG;
373
373
        char chNext = styler[startPos];
374
374
        for (int i = startPos; i < lengthDoc; i++)