Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix a c99-ism (non-constant initializer). |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
128f606fdaa94638b5cc8295c8db47cb |
| User & Date: | edward 2014-09-07 03:41:00.207 |
Context
|
2014-09-07
| ||
| 08:52 | When using $EDITOR to enter a commit message, tags provided via the --tag flag are now listed, per ML request. check-in: ae00c63109 user: stephan tags: trunk | |
| 03:41 | Fix a c99-ism (non-constant initializer). check-in: 128f606fda user: edward tags: trunk | |
|
2014-09-05
| ||
| 06:23 | Minor enhancements to the Tcl integration subsystem. check-in: 946c3eb640 user: mistachkin tags: trunk | |
Changes
Changes to src/markdown_html.c.
| ︙ | ︙ | |||
395 396 397 398 399 400 401 |
/* low level elements */
0, /* entities are copied verbatim */
html_normal_text,
/* misc. parameters */
64, /* maximum stack */
"*_", /* emphasis characters */
| | > | 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
/* low level elements */
0, /* entities are copied verbatim */
html_normal_text,
/* misc. parameters */
64, /* maximum stack */
"*_", /* emphasis characters */
0 /* opaque data */
};
html_renderer.opaque = output_title;
blob_reset(output_title);
blob_reset(output_body);
markdown(output_body, input_markdown, &html_renderer);
}
|