Fix write_description to always write close tag.

pull/196/head
Michael Sweet 8 years ago
parent 79e9bec13c
commit fa1336ddee
  1. 3
      configure
  2. 2
      doc/mxml.man
  3. 2
      mxmldoc.c

3
configure vendored

@ -2291,7 +2291,8 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
host_os_name=`echo $host_os | sed -e '1,$s/[0-9.]*$//g'`
host_os_version=`echo $host_os | sed -e '1,$s/^[^0-9.]*//g'`
host_os_version=`echo $host_os | sed -e '1,$s/^[^0-9.]*//g' | awk -F. '{print $1*100+$2}'`
echo "host_os_version=$host_os_version"
ac_config_headers="$ac_config_headers config.h"

@ -1,4 +1,4 @@
.TH mxml 3 "Mini-XML API" "04/24/17" "Mini-XML API"
.TH mxml 3 "Mini-XML API" "04/30/17" "Mini-XML API"
.SH NAME
mxml \- Mini-XML API
.SH INCLUDE FILE

@ -3661,7 +3661,7 @@ write_description(
ptr ++;
if (!*ptr)
return;
ptr --;
}
else if (!strncmp(ptr, "@code ", 6))
{

Loading…
Cancel
Save