CVS log for texi2mdoc/main.c

[BACK] Up to [cvsweb.bsd.lv] / texi2mdoc

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.73 / (download) - annotate - [select for diffs], Tue Nov 13 10:19:16 2018 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
CVS Tags: HEAD
Changes since 1.72: +8 -1 lines
Diff to previous 1.72 (colored) to selected 1.20 (colored)

If "@node Top" is missing, assume the document starts at "@top".
For example, this occurs in ffmpeg(1).
Issue reported and workaround proposed
by Michael Forney <mforney at mforney dot org>.

Revision 1.72 / (download) - annotate - [select for diffs], Tue Nov 13 08:45:29 2018 UTC (5 years, 4 months ago) by schwarze
Branch: MAIN
Changes since 1.71: +27 -4 lines
Diff to previous 1.71 (colored) to selected 1.20 (colored)

Add the -d option to specify the .Dd date,
and fall back to the mtime before resorting to the current time.
Patch from Michael Forney <mforney at mforney dot org>
with minimal tweaks by me.

While here, fix the date format, "%F" is wrong for mdoc(7).
Change it to "%B %e, %Y" which isn't perfect due to the
spurious blank before single-digit day numbers, but closer.

Revision 1.71 / (download) - annotate - [select for diffs], Thu Mar 19 09:53:35 2015 UTC (9 years ago) by schwarze
Branch: MAIN
Changes since 1.70: +67 -67 lines
Diff to previous 1.70 (colored) to selected 1.20 (colored)

zap trailing whitespace; verified with diff -b;
patch from Svyatoslav Mishyn <juef at openmailbox dot org>

Revision 1.70 / (download) - annotate - [select for diffs], Fri Mar 13 08:13:21 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.69: +16 -5 lines
Diff to previous 1.69 (colored) to selected 1.20 (colored)

Protect recursive printindex.

Revision 1.69 / (download) - annotate - [select for diffs], Fri Mar 13 08:07:33 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.68: +22 -5 lines
Diff to previous 1.68 (colored) to selected 1.20 (colored)

Fix some buffer overruns found by AFL.

Revision 1.68 / (download) - annotate - [select for diffs], Thu Mar 12 10:44:34 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.67: +131 -66 lines
Diff to previous 1.67 (colored) to selected 1.20 (colored)

Properly use natural ordering for the navigation section.

Revision 1.67 / (download) - annotate - [select for diffs], Thu Mar 12 04:24:19 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.66: +56 -58 lines
Diff to previous 1.66 (colored) to selected 1.20 (colored)

First, integrate the new `Xr' notation for linking to sections when
chapter mode is enabled.
Second, refine the @top/@node relationship.
Lastly, specify that we don't break apart by chapters, but directly by
nodes.

Revision 1.66 / (download) - annotate - [select for diffs], Wed Mar 11 12:51:41 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.65: +340 -180 lines
Diff to previous 1.65 (colored) to selected 1.20 (colored)

Enormous patch (re-)fixing (again) the vertical space issue, which works
even better in delaying vertical space until needed.
This also adds a lot more indexing capabilities.
All indexing has an HAVE_INDEX preprocess directive, since this is not
really mdoc(7) (yet).

Revision 1.65 / (download) - annotate - [select for diffs], Mon Mar 9 18:54:38 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.64: +51 -6 lines
Diff to previous 1.64 (colored) to selected 1.20 (colored)

Prevent empty Bd/Ed listing after type definition.
This also includes some ifdef'd menu generation.

Revision 1.64 / (download) - annotate - [select for diffs], Sat Mar 7 11:49:32 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.63: +122 -4 lines
Diff to previous 1.63 (colored) to selected 1.20 (colored)

Be more careful when we emit newlines before tables.
Also adds an ifdef'd initial @menu implementation, which still requires
some careful thought.

Revision 1.63 / (download) - annotate - [select for diffs], Thu Mar 5 15:18:13 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.62: +5 -1 lines
Diff to previous 1.62 (colored) to selected 1.20 (colored)

Convert `--' and `---' to en-dash and em-dash, respectively, and ensure that
this (and the other conversations) don't occur in literal mode.
Also make sure that @code{} switches on literal mode.

Revision 1.62 / (download) - annotate - [select for diffs], Thu Mar 5 09:36:41 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.61: +8 -8 lines
Diff to previous 1.61 (colored) to selected 1.20 (colored)

First stab at properly handling the superfluous `Pp' problem: when we
encounter a double-newline while parsing words, remember that this has
happened.
Then, when we're parsing a subsequent word with that flag set, start with
a `Pp'.
Printing macros will automatically disable the newline status.

Revision 1.61 / (download) - annotate - [select for diffs], Thu Mar 5 08:35:35 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.60: +54 -5 lines
Diff to previous 1.60 (colored) to selected 1.20 (colored)

Properly insert the @copying block.

Revision 1.60 / (download) - annotate - [select for diffs], Thu Mar 5 08:18:56 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.59: +13 -5 lines
Diff to previous 1.59 (colored) to selected 1.20 (colored)

Don't print out defindex tokens--just save them.

Revision 1.59 / (download) - annotate - [select for diffs], Tue Mar 3 15:04:24 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.58: +15 -2 lines
Diff to previous 1.58 (colored) to selected 1.20 (colored)

Account for @item a=@var{foo} and similar by using a `Ns' macro to remove
spacing between the macro and prior text.  This cleans up, among others, the
GNU ld.texinfo manual.
Also add the backslash.

Revision 1.58 / (download) - annotate - [select for diffs], Mon Mar 2 18:12:53 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.57: +10 -2 lines
Diff to previous 1.57 (colored) to selected 1.20 (colored)

Allow for @sc{} to properly uppercase as requested by Baptiste Daroussin--thanks!

Revision 1.57 / (download) - annotate - [select for diffs], Sun Mar 1 16:57:39 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.56: +32 -29 lines
Diff to previous 1.56 (colored) to selected 1.20 (colored)

Minor bug-fixes: empty macros still have brackets parsed, correctly
skipping '@NEWLINE' when advancing to the end of line, adding which
nodes are in the info navigation section.

Revision 1.56 / (download) - annotate - [select for diffs], Sun Mar 1 13:39:51 2015 UTC (9 years ago) by kristaps
Branch: MAIN
Changes since 1.55: +9 -6 lines
Diff to previous 1.55 (colored) to selected 1.20 (colored)

Allow @value in the settitle block as found in GMP.

Revision 1.55 / (download) - annotate - [select for diffs], Sun Mar 1 00:25:07 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.54: +27 -50 lines
Diff to previous 1.54 (colored) to selected 1.20 (colored)

Add initial (and rather crude) support to print chapter-by-chapter nodes.
This is because with most manuals, apropos(1) is useless: it will point
to somewhere in a million lines.
This allows texi2moc to break apart a manual into chapters, each of which
links to other chapters, and which (at least in theory) will allow for
easier digesting of material.

Revision 1.54 / (download) - annotate - [select for diffs], Sat Feb 28 13:16:44 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.53: +40 -4 lines
Diff to previous 1.53 (colored) to selected 1.20 (colored)

When using @def style commands, indent the "explanation" block as it's
supposed to be, where subsequent @defx commands aren't indented.

Revision 1.53 / (download) - annotate - [select for diffs], Sat Feb 28 08:41:59 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.52: +6 -33 lines
Diff to previous 1.52 (colored) to selected 1.20 (colored)

Have @math mode properly interpret commands and match squiggly brackets.

Revision 1.52 / (download) - annotate - [select for diffs], Sat Feb 28 00:03:20 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored) to selected 1.20 (colored)

Prevent infinite macro expansion by incrementing a "depth" of recursive
expansion IFF we're currently in a macro expansion already, where the start
of the macro expansion begins at the macro name and NOT after the name has
been parsed.

Revision 1.51 / (download) - annotate - [select for diffs], Fri Feb 27 19:28:55 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored) to selected 1.20 (colored)

Fix a potential crash found by AFL.

Revision 1.50 / (download) - annotate - [select for diffs], Thu Feb 26 10:41:30 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored) to selected 1.20 (colored)

Make sure we get syncodeindex bindings into our defindexes.

Revision 1.49 / (download) - annotate - [select for diffs], Wed Feb 25 15:50:56 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.48: +4 -4 lines
Diff to previous 1.48 (colored) to selected 1.20 (colored)

Casting for ctype functions.  Patch by Thomas Klausner--thanks!

Revision 1.48 / (download) - annotate - [select for diffs], Wed Feb 25 15:15:18 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_0_1_2
Changes since 1.47: +3 -2 lines
Diff to previous 1.47 (colored) to selected 1.20 (colored)

Handle newline properly w/r/t vspace.

Revision 1.47 / (download) - annotate - [select for diffs], Wed Feb 25 15:04:13 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.46: +2 -1 lines
Diff to previous 1.46 (colored) to selected 1.20 (colored)

Compilation on OpenBSD.

Revision 1.46 / (download) - annotate - [select for diffs], Wed Feb 25 14:37:17 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.45: +305 -335 lines
Diff to previous 1.45 (colored) to selected 1.20 (colored)

Completely re-write @value and @macro handling to work exactly as Texinfo
specifies and not how I really want it to work.
In a word, macros and values are pasted into the text: they're not self-
contained bodies that can be recursively executed.

In other words,
  @macro hello{}
  @ifset foo
  @end macro
  @hello
  @end ifset
...is completely valid.

While here, stop paying attention to the manual's lies about macro newlines.
The terminal newline (i.e., before "@end macro") is part of the macro, which
is why so many macros are @r{}@c -- to swallow the newline.

This required a significant mechanical change to get the buffer pointer and
size out of all arguments, as the buffer can now be reallocated.

Revision 1.45 / (download) - annotate - [select for diffs], Wed Feb 25 10:01:54 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.44: +72 -38 lines
Diff to previous 1.44 (colored) to selected 1.20 (colored)

First the memmem(3) invocations to have the proper length of the file.
Next, make sure that conditionally-ignored text (e.g., @ifset) allows
for nested @ifset's and corresponding @end ifset pairs.
Without this, the parser would have stopped at the first @end ifset and
let subsequent text through.

Revision 1.44 / (download) - annotate - [select for diffs], Tue Feb 24 21:06:52 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.43: +27 -3 lines
Diff to previous 1.43 (colored) to selected 1.20 (colored)

Add (and ignore) a few more macros.

Revision 1.43 / (download) - annotate - [select for diffs], Tue Feb 24 20:34:43 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.42: +72 -4 lines
Diff to previous 1.42 (colored) to selected 1.20 (colored)

Allow many more (all?) symbols and punctuate.

Revision 1.42 / (download) - annotate - [select for diffs], Tue Feb 24 20:06:32 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.41: +175 -38 lines
Diff to previous 1.41 (colored) to selected 1.20 (colored)

Add all of the accents and fix their weird parsing rules.
Add lots more symbols, while there.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Feb 24 14:35:40 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.40: +9 -19 lines
Diff to previous 1.40 (colored) to selected 1.20 (colored)

Clarify the role of texiputchar() and texiputchars() and make sure both are
being correctly invoked.
While doing so, prune away the different places where mdoc(7) is being
escaped.

Revision 1.40 / (download) - annotate - [select for diffs], Mon Feb 23 22:50:11 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.39: +37 -32 lines
Diff to previous 1.39 (colored) to selected 1.20 (colored)

Add reading initial file from stdin.
Ignore some more macros from in GMP.

Revision 1.39 / (download) - annotate - [select for diffs], Mon Feb 23 20:54:53 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.38: +4 -4 lines
Diff to previous 1.38 (colored) to selected 1.20 (colored)

Convert Qq to Dq for links.  Patch by Anthony Bentley: thanks!

Revision 1.38 / (download) - annotate - [select for diffs], Mon Feb 23 20:52:45 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.37: +3 -3 lines
Diff to previous 1.37 (colored) to selected 1.20 (colored)

Swap TEXICMD_TEXSYM and TEXICMD_TIE.  Patch by Anthony Bentley: thanks!

Revision 1.37 / (download) - annotate - [select for diffs], Mon Feb 23 17:24:51 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.36: +14 -9 lines
Diff to previous 1.36 (colored) to selected 1.20 (colored)

Compile on Linux: define _GNU_SOURCE for memmem(3), replace strlcat(3) with
a manual copy (ok: it's just a single usage and not worth a compat), and
fix dirname(3) usage.
While here, fix a GMP manual that was puking on .Pp in an @example.

Revision 1.36 / (download) - annotate - [select for diffs], Mon Feb 23 15:23:44 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
CVS Tags: VERSION_0_1_1
Changes since 1.35: +3 -3 lines
Diff to previous 1.35 (colored) to selected 1.20 (colored)

Allow compiling on OpenBSD.

Revision 1.35 / (download) - annotate - [select for diffs], Mon Feb 23 15:09:09 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.34: +16 -2 lines
Diff to previous 1.34 (colored) to selected 1.20 (colored)

Implement macro-invocation workarounds found in real-life manuals.
Add some random macros found in real-life manuals.

Revision 1.34 / (download) - annotate - [select for diffs], Mon Feb 23 14:36:03 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.33: +60 -9 lines
Diff to previous 1.33 (colored) to selected 1.20 (colored)

Have @math and @verb correctly escape arguments, add @cartouche, fix
accent marks.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Feb 23 12:39:59 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.32: +40 -2 lines
Diff to previous 1.32 (colored) to selected 1.20 (colored)

Add @verb{} support.

Revision 1.32 / (download) - annotate - [select for diffs], Mon Feb 23 12:28:20 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.31: +9 -1 lines
Diff to previous 1.31 (colored) to selected 1.20 (colored)

When calling `TS', we can temporarily unset literal mode because the TS
isn't really part of the mdoc(7) document itself.

Revision 1.31 / (download) - annotate - [select for diffs], Mon Feb 23 11:56:39 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored) to selected 1.20 (colored)

Save line, column, and filename references before parsing memory buffers,
or else we'll munge our position.
Also, follow the texinfo manual with its single-argument comma ignoring.

Revision 1.30 / (download) - annotate - [select for diffs], Mon Feb 23 11:44:30 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.29: +72 -7 lines
Diff to previous 1.29 (colored) to selected 1.20 (colored)

Macro support!  This parses the @macro blocks, maintains their arguments and
bodies, recognises invoked macros, fills in their arguments, then recursively
invokes the macro bodies.

Revision 1.29 / (download) - annotate - [select for diffs], Sat Feb 21 22:01:32 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.28: +3 -1 lines
Diff to previous 1.28 (colored) to selected 1.20 (colored)

Protect against too many nested values.
Convert texiabort() (needs an errno) to texierr().

Revision 1.28 / (download) - annotate - [select for diffs], Sat Feb 21 21:49:18 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.27: +20 -5 lines
Diff to previous 1.27 (colored) to selected 1.20 (colored)

Make @value{...} parse its own arguments.
So add the necessary protection against infinite recursion.
Also protect against texivspace() in tables.

Revision 1.27 / (download) - annotate - [select for diffs], Sat Feb 21 17:00:33 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.26: +61 -39 lines
Diff to previous 1.26 (colored) to selected 1.20 (colored)

Add user-defined code indices.

Revision 1.26 / (download) - annotate - [select for diffs], Fri Feb 20 15:37:33 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.25: +46 -17 lines
Diff to previous 1.25 (colored) to selected 1.20 (colored)

Have ignored blocks be really ignored, not parsed with p->ign.
Make ifinfo be processed (plaintext modes use that, as stipulated by TFM).
Fix verbatim blocks.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Feb 20 12:25:25 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.24: +122 -137 lines
Diff to previous 1.24 (colored) to selected 1.20 (colored)

Move value parsing into util.c.
Add verbatim mode.
Add some more commands.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Feb 20 09:58:50 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.23: +168 -974 lines
Diff to previous 1.23 (colored) to selected 1.20 (colored)

Split utility functions out of main.c.

Revision 1.23 / (download) - annotate - [select for diffs], Thu Feb 19 20:55:56 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.22: +82 -11 lines
Diff to previous 1.22 (colored) to selected 1.20 (colored)

Add section raising/lowering.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Feb 19 16:44:26 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored) to selected 1.20 (colored)

Remove superfluous abort().

Revision 1.21 / (download) - annotate - [select for diffs], Thu Feb 19 16:35:54 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.20: +35 -57 lines
Diff to previous 1.20 (colored)

Use mdoc(7) fonts, not roff(7) fonts.

Revision 1.20 / (download) - annotate - [selected], Thu Feb 19 16:15:17 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.19: +38 -5 lines
Diff to previous 1.19 (colored)

A few more macros.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Feb 19 15:40:44 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored) to selected 1.20 (colored)

Fix assertion failure.

Revision 1.18 / (download) - annotate - [select for diffs], Thu Feb 19 15:34:20 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.17: +150 -19 lines
Diff to previous 1.17 (colored) to selected 1.20 (colored)

Add @multitable support.

Revision 1.17 / (download) - annotate - [select for diffs], Thu Feb 19 10:29:17 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.16: +12 -1 lines
Diff to previous 1.16 (colored) to selected 1.20 (colored)

Add more macros.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Feb 19 10:20:31 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.15: +167 -8 lines
Diff to previous 1.15 (colored) to selected 1.20 (colored)

Add accents and verbatim inclusions.

Revision 1.15 / (download) - annotate - [select for diffs], Thu Feb 19 09:28:42 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.14: +159 -53 lines
Diff to previous 1.14 (colored) to selected 1.20 (colored)

Lots of @defXXX work.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Feb 19 08:09:55 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.13: +17 -1 lines
Diff to previous 1.13 (colored) to selected 1.20 (colored)

Add manual.

Revision 1.13 / (download) - annotate - [select for diffs], Thu Feb 19 07:50:51 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.12: +13 -7 lines
Diff to previous 1.12 (colored) to selected 1.20 (colored)

Fix AFL crash and add in a few more environments.

Revision 1.12 / (download) - annotate - [select for diffs], Wed Feb 18 23:08:16 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.11: +116 -101 lines
Diff to previous 1.11 (colored) to selected 1.20 (colored)

Tune-ups.

Revision 1.11 / (download) - annotate - [select for diffs], Wed Feb 18 16:35:49 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.10: +75 -35 lines
Diff to previous 1.10 (colored) to selected 1.20 (colored)

Clean up vspace and punctuation.

Revision 1.10 / (download) - annotate - [select for diffs], Wed Feb 18 15:30:31 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.9: +61 -9 lines
Diff to previous 1.9 (colored) to selected 1.20 (colored)

Use the correct date and title.

Revision 1.9 / (download) - annotate - [select for diffs], Wed Feb 18 14:52:45 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.8: +19 -12 lines
Diff to previous 1.8 (colored) to selected 1.20 (colored)

Fix bugs found with AFL.

Revision 1.8 / (download) - annotate - [select for diffs], Wed Feb 18 12:03:21 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.7: +164 -60 lines
Diff to previous 1.7 (colored) to selected 1.20 (colored)

Sync.

Revision 1.7 / (download) - annotate - [select for diffs], Wed Feb 18 11:08:58 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.6: +17 -37 lines
Diff to previous 1.6 (colored) to selected 1.20 (colored)

Sync.

Revision 1.6 / (download) - annotate - [select for diffs], Wed Feb 18 11:03:04 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored) to selected 1.20 (colored)

Compile on OpenBSD/Linux.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Feb 18 11:01:56 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.4: +164 -161 lines
Diff to previous 1.4 (colored) to selected 1.20 (colored)

Sync.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 17 20:27:44 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.3: +8 -42 lines
Diff to previous 1.3 (colored) to selected 1.20 (colored)

Sync.

Revision 1.3 / (download) - annotate - [select for diffs], Tue Feb 17 17:02:03 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.2: +581 -134 lines
Diff to previous 1.2 (colored) to selected 1.20 (colored)

Clean up.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Feb 17 10:27:18 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Changes since 1.1: +171 -48 lines
Diff to previous 1.1 (colored) to selected 1.20 (colored)

Sync.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Feb 16 22:24:43 2015 UTC (9 years, 1 month ago) by kristaps
Branch: version_0
CVS Tags: VERSION_0
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored) to selected 1.20 (colored)

Initial import of texi2mdoc.

Revision 1.1 / (download) - annotate - [select for diffs], Mon Feb 16 22:24:43 2015 UTC (9 years, 1 month ago) by kristaps
Branch: MAIN
Diff to selected 1.20 (colored)

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb