Login
Check-in [9fb6fae4f8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Diff format typo fix.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9fb6fae4f8fa4891c728a9e7659275e2310dbcf4
User & Date: stephan 2021-12-23 03:53:56.016
Context
2021-12-23
03:57
Renamed fsl_diff_builder to fsl_dibu. Sounds nicer and the older name is annoyingly long when used as a namespace/prefix. check-in: e9ec078844 user: stephan tags: trunk
03:53
Diff format typo fix. check-in: 9fb6fae4f8 user: stephan tags: trunk
2021-12-22
13:41
Integrated the ncurses unified-ish build into f-vdiff. check-in: 644d551cb4 user: stephan tags: trunk
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to f-apps/fsl-ncurses.c.
210
211
212
213
214
215
216
217

218
219
220
221
222
223
224
210
211
212
213
214
215
216

217
218
219
220
221
222
223
224







-
+







    if(sst->cursor.y){/*gap before 2nd+ index line*/;
      fdb__ncu_pline(b, attr,"");
    }
    fdb__ncu_pline(b, attr,"Index #%d: %s", (int)b->fileCount,b->opt->nameLHS/*RHS?*/);
    fdb__ncu_pline(b, attr,"%.*c", (int)sst->displayWidth, '=');
  }
  fdb__ncu_pline(b, attr,"--- %s", b->opt->nameLHS);
  fdb__ncu_pline(b, attr,"--- %s", b->opt->nameRHS);
  fdb__ncu_pline(b, attr,"+++ %s", b->opt->nameRHS);
  return rc;
}


static int fdb__ncu_chunkHeader(fsl_diff_builder* const b,
                                  uint32_t lnnoLHS, uint32_t linesLHS,
                                  uint32_t lnnoRHS, uint32_t linesRHS ){