Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/mdocml/dist Import mdocml-1.10.2:



details:   https://anonhg.NetBSD.org/src/rev/68666c52f381
branches:  trunk
changeset: 755841:68666c52f381
user:      joerg <joerg%NetBSD.org@localhost>
date:      Thu Jun 24 17:16:37 2010 +0000

description:
Import mdocml-1.10.2:
- Minor bug-fixes and optimisations
- Support font styles for Postscript output

diffstat:

 external/bsd/mdocml/dist/Makefile        |   18 +-
 external/bsd/mdocml/dist/arch.c          |    4 +-
 external/bsd/mdocml/dist/arch.in         |    4 +-
 external/bsd/mdocml/dist/att.c           |    4 +-
 external/bsd/mdocml/dist/att.in          |    4 +-
 external/bsd/mdocml/dist/chars.c         |    4 +-
 external/bsd/mdocml/dist/chars.h         |    4 +-
 external/bsd/mdocml/dist/chars.in        |    4 +-
 external/bsd/mdocml/dist/html.c          |    4 +-
 external/bsd/mdocml/dist/html.h          |    4 +-
 external/bsd/mdocml/dist/lib.c           |    4 +-
 external/bsd/mdocml/dist/lib.in          |   29 +-
 external/bsd/mdocml/dist/libman.h        |    6 +-
 external/bsd/mdocml/dist/libmandoc.h     |    6 +-
 external/bsd/mdocml/dist/libmdoc.h       |    4 +-
 external/bsd/mdocml/dist/main.c          |   11 +-
 external/bsd/mdocml/dist/main.h          |    9 +-
 external/bsd/mdocml/dist/man.c           |    4 +-
 external/bsd/mdocml/dist/man.h           |    4 +-
 external/bsd/mdocml/dist/man_argv.c      |    4 +-
 external/bsd/mdocml/dist/man_hash.c      |    4 +-
 external/bsd/mdocml/dist/man_html.c      |    4 +-
 external/bsd/mdocml/dist/man_macro.c     |    4 +-
 external/bsd/mdocml/dist/man_validate.c  |   10 +-
 external/bsd/mdocml/dist/mandoc.1        |    6 +-
 external/bsd/mdocml/dist/mandoc.c        |   86 +++--
 external/bsd/mdocml/dist/mandoc.h        |    8 +-
 external/bsd/mdocml/dist/mdoc.7          |   25 +-
 external/bsd/mdocml/dist/mdoc.c          |   10 +-
 external/bsd/mdocml/dist/mdoc.h          |   29 +-
 external/bsd/mdocml/dist/mdoc_argv.c     |    6 +-
 external/bsd/mdocml/dist/mdoc_hash.c     |    4 +-
 external/bsd/mdocml/dist/mdoc_html.c     |   70 +---
 external/bsd/mdocml/dist/mdoc_macro.c    |    4 +-
 external/bsd/mdocml/dist/mdoc_strings.c  |    4 +-
 external/bsd/mdocml/dist/mdoc_validate.c |  188 +++++++++----
 external/bsd/mdocml/dist/msec.in         |    4 +-
 external/bsd/mdocml/dist/out.c           |    4 +-
 external/bsd/mdocml/dist/out.h           |    4 +-
 external/bsd/mdocml/dist/roff.7          |   19 +-
 external/bsd/mdocml/dist/roff.c          |  135 +++++++--
 external/bsd/mdocml/dist/st.c            |    4 +-
 external/bsd/mdocml/dist/st.in           |    4 +-
 external/bsd/mdocml/dist/term.c          |  277 +------------------
 external/bsd/mdocml/dist/term.h          |   34 +-
 external/bsd/mdocml/dist/term_ascii.c    |  128 +++++++++
 external/bsd/mdocml/dist/term_ps.c       |  427 +++++++++++++++++++++++++++++++
 external/bsd/mdocml/dist/tree.c          |    4 +-
 external/bsd/mdocml/dist/vol.c           |    4 +-
 external/bsd/mdocml/dist/vol.in          |    4 +-
 50 files changed, 1090 insertions(+), 559 deletions(-)

diffs (truncated from 2847 to 300 lines):

diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/Makefile
--- a/external/bsd/mdocml/dist/Makefile Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/Makefile Thu Jun 24 17:16:37 2010 +0000
@@ -12,8 +12,8 @@
 INSTALL_LIB    = $(INSTALL) -m 0644
 INSTALL_MAN    = $(INSTALL_DATA)
 
-VERSION           = 1.10.1
-VDATE     = 07 June 2010
+VERSION           = 1.10.2
+VDATE     = 19 June 2010
 
 VFLAGS    = -DVERSION="\"$(VERSION)\""
 WFLAGS     = -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings
@@ -69,13 +69,15 @@
 
 MAINLNS           = main.ln mdoc_term.ln chars.ln term.ln tree.ln \
             compat.ln man_term.ln html.ln mdoc_html.ln \
-            man_html.ln out.ln
+            man_html.ln out.ln term_ps.ln term_ascii.ln
 
 MAINOBJS   = main.o mdoc_term.o chars.o term.o tree.o compat.o \
-            man_term.o html.o mdoc_html.o man_html.o out.o
+            man_term.o html.o mdoc_html.o man_html.o out.o \
+            term_ps.o term_ascii.o
 
 MAINSRCS   = main.c mdoc_term.c chars.c term.c tree.c compat.c \
-            man_term.c html.c mdoc_html.c man_html.c out.c
+            man_term.c html.c mdoc_html.c man_html.c out.c \
+            term_ps.c term_ascii.c
 
 LLNS      = llib-llibmdoc.ln llib-llibman.ln llib-lmandoc.ln \
             llib-llibmandoc.ln llib-llibroff.ln
@@ -158,7 +160,7 @@
 ps:    $(PSS)
 
 installwww: www
-       $(INSTALL_DATA) $(HTMLS) $(TEXTS) $(STATICS) $(DESTDIR)$(PREFIX)/
+       $(INSTALL_DATA) $(HTMLS) $(PSS) $(TEXTS) $(STATICS) $(DESTDIR)$(PREFIX)/
        $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(DESTDIR)$(PREFIX)/snapshots/
        $(INSTALL_DATA) mdocml-$(VERSION).md5 $(DESTDIR)$(PREFIX)/snapshots/
        $(INSTALL_DATA) mdocml-$(VERSION).tar.gz $(DESTDIR)$(PREFIX)/snapshots/mdocml.tar.gz
@@ -223,6 +225,10 @@
 
 term.ln term.o: term.c term.h man.h mdoc.h chars.h
 
+term_ps.ln term_ps.o: term_ps.c term.h main.h
+
+term_ascii.ln term_ascii.o: term_ascii.c term.h main.h
+
 html.ln html.o: html.c html.h chars.h
 
 mdoc_html.ln mdoc_html.o: mdoc_html.c html.h mdoc.h
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/arch.c
--- a/external/bsd/mdocml/dist/arch.c   Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/arch.c   Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: arch.c,v 1.7 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Vendor-Id: arch.c,v 1.8 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/arch.in
--- a/external/bsd/mdocml/dist/arch.in  Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/arch.in  Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: arch.in,v 1.7 2010/03/26 07:07:58 kristaps Exp $ */
+/*     $Vendor-Id: arch.in,v 1.8 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/att.c
--- a/external/bsd/mdocml/dist/att.c    Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/att.c    Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: att.c,v 1.7 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Vendor-Id: att.c,v 1.8 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/att.in
--- a/external/bsd/mdocml/dist/att.in   Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/att.in   Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: att.in,v 1.5 2009/06/10 20:18:43 kristaps Exp $ */
+/*     $Vendor-Id: att.in,v 1.6 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/chars.c
--- a/external/bsd/mdocml/dist/chars.c  Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/chars.c  Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: chars.c,v 1.19 2010/06/01 11:47:28 kristaps Exp $ */
+/*     $Vendor-Id: chars.c,v 1.20 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/chars.h
--- a/external/bsd/mdocml/dist/chars.h  Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/chars.h  Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: chars.h,v 1.3 2010/05/25 12:37:20 kristaps Exp $ */
+/*     $Vendor-Id: chars.h,v 1.4 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/chars.in
--- a/external/bsd/mdocml/dist/chars.in Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/chars.in Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: chars.in,v 1.24 2010/06/01 11:47:28 kristaps Exp $ */
+/*     $Vendor-Id: chars.in,v 1.25 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/html.c
--- a/external/bsd/mdocml/dist/html.c   Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/html.c   Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: html.c,v 1.101 2010/06/07 10:52:44 kristaps Exp $ */
+/*     $Vendor-Id: html.c,v 1.102 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/html.h
--- a/external/bsd/mdocml/dist/html.h   Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/html.h   Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: html.h,v 1.23 2010/04/05 08:51:56 kristaps Exp $ */
+/*     $Vendor-Id: html.h,v 1.24 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/lib.c
--- a/external/bsd/mdocml/dist/lib.c    Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/lib.c    Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: lib.c,v 1.7 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Vendor-Id: lib.c,v 1.8 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/lib.in
--- a/external/bsd/mdocml/dist/lib.in   Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/lib.in   Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: lib.in,v 1.7 2010/05/14 17:10:06 kristaps Exp $ */
+/*     $Vendor-Id: lib.in,v 1.9 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -27,25 +27,42 @@
 LINE("libarm",         "ARM Architecture Library (libarm, \\-larm)")
 LINE("libarm32",       "ARM32 Architecture Library (libarm32, \\-larm32)")
 LINE("libbluetooth",   "Bluetooth Library (libbluetooth, \\-lbluetooth)")
+LINE("libbsm",         "Basic Security Module User Library (libbsm, \\-lbsm)")
 LINE("libc",           "Standard C Library (libc, \\-lc)")
+LINE("libc_r",         "Reentrant C\\~Library (libc_r, \\-lc_r)")
+LINE("libcalendar",    "Calendar Arithmetic Library (libcalendar, \\-lcalendar)")
+LINE("libcam",         "Common Access Method User Library (libcam, \\-lcam)")
 LINE("libcdk",         "Curses Development Kit Library (libcdk, \\-lcdk)")
+LINE("libcipher",      "FreeSec Crypt Library (libcipher, \\-lcipher)")
 LINE("libcompat",      "Compatibility Library (libcompat, \\-lcompat)")
 LINE("libcrypt",       "Crypt Library (libcrypt, \\-lcrypt)")
 LINE("libcurses",      "Curses Library (libcurses, \\-lcurses)")
+LINE("libdevinfo",     "Device and Resource Information Utility Library (libdevinfo, \\-ldevinfo)")
+LINE("libdevstat",     "Device Statistics Library (libdevstat, \\-ldevstat)")
+LINE("libdisk",                "Interface to Slice and Partition Labels Library (libdisk, \\-ldisk)")
 LINE("libedit",                "Command Line Editor Library (libedit, \\-ledit)")
 LINE("libelf",         "ELF Parsing Library (libelf, \\-lelf)")
 LINE("libevent",       "Event Notification Library (libevent, \\-levent)")
 LINE("libfetch",       "File Transfer Library for URLs (libfetch, \\-lfetch)")
 LINE("libform",                "Curses Form Library (libform, \\-lform)")
+LINE("libgeom",                "Userland API Library for kernel GEOM subsystem (libgeom, \\-lgeom)")
+LINE("libgpib",                "General-Purpose Instrument Bus (GPIB) library (libgpib, \\-lgpib)")
 LINE("libi386",                "i386 Architecture Library (libi386, \\-li386)")
 LINE("libintl",                "Internationalized Message Handling Library (libintl, \\-lintl)")
 LINE("libipsec",       "IPsec Policy Control Library (libipsec, \\-lipsec)")
+LINE("libipx",         "IPX Address Conversion Support Library (libipx, \\-lipx)")
 LINE("libiscsi",       "iSCSI protocol library (libiscsi, \\-liscsi)")
+LINE("libjail",                "Jail Library (libjail, \\-ljail)")
+LINE("libkiconv",      "Kernel side iconv library (libkiconv, \\-lkiconv)")
+LINE("libkse",         "N:M Threading Library (libkse, \\-lkse)")
 LINE("libkvm",         "Kernel Data Access Library (libkvm, \\-lkvm)")
 LINE("libm",           "Math Library (libm, \\-lm)")
 LINE("libm68k",                "m68k Architecture Library (libm68k, \\-lm68k)")
 LINE("libmagic",       "Magic Number Recognition Library (libmagic, \\-lmagic)")
+LINE("libmd",          "Message Digest (MD4, MD5, etc.) Support Library (libmd, \\-lmd)")
+LINE("libmemstat",     "Kernel Memory Allocator Statistics Library (libmemstat, \\-lmemstat)")
 LINE("libmenu",                "Curses Menu Library (libmenu, \\-lmenu)")
+LINE("libnetgraph",    "Netgraph User Library (libnetgraph, \\-lnetgraph)")
 LINE("libnetpgp",      "Netpgp signing, verification, encryption and decryption (libnetpgp, \\-lnetpgp)")
 LINE("libossaudio",    "OSS Audio Emulation Library (libossaudio, \\-lossaudio)")
 LINE("libpam",         "Pluggable Authentication Module Library (libpam, \\-lpam)")
@@ -58,11 +75,19 @@
 LINE("libpuffs",       "puffs Convenience Library (libpuffs, \\-lpuffs)")
 LINE("librefuse",      "File System in Userspace Convenience Library (librefuse, \\-lrefuse)")
 LINE("libresolv",      "DNS Resolver Library (libresolv, \\-lresolv)")
+LINE("librpcsec_gss",  "RPC GSS-API Authentication Library (librpcsec_gss, \\-lrpcsec_gss)")
+LINE("librpcsvc",      "RPC Service Library (librpcsvc, \\-lrpcsvc)")
 LINE("librt",          "POSIX Real\\-time Library (librt, -lrt)")
+LINE("libsdp",         "Bluetooth Service Discovery Protocol User Library (libsdp, \\-lsdp)")
 LINE("libssp",         "Buffer Overflow Protection Library (libssp, \\-lssp)")
 LINE("libtermcap",     "Termcap Access Library (libtermcap, \\-ltermcap)")
 LINE("libterminfo",    "Terminal Information Library (libterminfo, \\-lterminfo)")
+LINE("libthr",         "1:1 Threading Library (libthr, \\-lthr)")
+LINE("libufs",         "UFS File System Access Library (libufs, \\-lufs)")
+LINE("libugidfw",      "File System Firewall Interface Library (libugidfw, \\-lugidfw)")
+LINE("libulog",                "User Login Record Library (libulog, \\-lulog)")
 LINE("libusbhid",      "USB Human Interface Devices Library (libusbhid, \\-lusbhid)")
 LINE("libutil",                "System Utilities Library (libutil, \\-lutil)")
+LINE("libvgl",         "Video Graphics Library (libvgl, \\-lvgl)")
 LINE("libx86_64",      "x86_64 Architecture Library (libx86_64, \\-lx86_64)")
 LINE("libz",           "Compression Library (libz, \\-lz)")
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/libman.h
--- a/external/bsd/mdocml/dist/libman.h Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/libman.h Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: libman.h,v 1.34 2010/05/17 22:11:42 kristaps Exp $ */
+/*     $Vendor-Id: libman.h,v 1.36 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -79,7 +79,7 @@
 int              man_vmsg(struct man *, enum mandocerr,
                        int, int, const char *, ...);
 int              man_valid_post(struct man *);
-int              man_valid_pre(struct man *, const struct man_node *);
+int              man_valid_pre(struct man *, struct man_node *);
 int              man_action_post(struct man *);
 int              man_action_pre(struct man *, struct man_node *);
 int              man_unscope(struct man *, 
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/libmandoc.h
--- a/external/bsd/mdocml/dist/libmandoc.h      Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/libmandoc.h      Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: libmandoc.h,v 1.6 2010/05/25 12:37:20 kristaps Exp $ */
+/*     $Vendor-Id: libmandoc.h,v 1.8 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -19,7 +19,7 @@
 
 __BEGIN_DECLS
 
-int             mandoc_special(const char *);
+int             mandoc_special(char *);
 void           *mandoc_calloc(size_t, size_t);
 char           *mandoc_strdup(const char *);
 void           *mandoc_malloc(size_t);
diff -r db56ffb18a32 -r 68666c52f381 external/bsd/mdocml/dist/libmdoc.h
--- a/external/bsd/mdocml/dist/libmdoc.h        Thu Jun 24 17:12:06 2010 +0000
+++ b/external/bsd/mdocml/dist/libmdoc.h        Thu Jun 24 17:16:37 2010 +0000
@@ -1,6 +1,6 @@
-/*     $Vendor-Id: libmdoc.h,v 1.52 2010/06/03 13:44:36 kristaps Exp $ */
+/*     $Vendor-Id: libmdoc.h,v 1.53 2010/06/19 20:46:27 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%kth.se@localhost>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps%bsd.lv@localhost>
  *



Home | Main Index | Thread Index | Old Index