~ubuntu-branches/ubuntu/maverick/vim/maverick

« back to all changes in this revision

Viewing changes to src/ops.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-01-13 18:39:18 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090113183918-kgq1jzdwsbbex4pq
Tags: 2:7.2.079-1ubuntu1
* Resynchronise with Debian (diversions fix closes LP: #296324). Remaining
  changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2209
2209
    {
2210
2210
        for (; pos.lnum <= oap->end.lnum; ++pos.lnum)
2211
2211
        {
 
2212
            int one_change;
 
2213
 
2212
2214
            block_prep(oap, &bd, pos.lnum, FALSE);
2213
2215
            pos.col = bd.textcol;
2214
 
            did_change = swapchars(oap->op_type, &pos, bd.textlen);
 
2216
            one_change = swapchars(oap->op_type, &pos, bd.textlen);
 
2217
            did_change |= one_change;
2215
2218
 
2216
2219
# ifdef FEAT_NETBEANS_INTG
2217
 
            if (usingNetbeans && did_change)
 
2220
            if (usingNetbeans && one_change)
2218
2221
            {
2219
2222
                char_u *ptr = ml_get_buf(curbuf, pos.lnum, FALSE);
2220
2223