Fix write_description to always write close tag.

This commit is contained in:
Michael Sweet 2017-04-30 01:27:37 -04:00
parent 79e9bec13c
commit fa1336ddee
3 changed files with 4 additions and 3 deletions

3
configure vendored
View File

@ -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"

View File

@ -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

View File

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