Commit 9689a1c4 authored by Emmanuel Bertin's avatar Emmanuel Bertin
Browse files

Fixed #22: removed extra space in TDIM strings.

parent 33253012
......@@ -7,7 +7,7 @@
#
# This file part of: SExtractor
#
# Copyright: (C) 2002-2020 IAP/CNRS/SorbonneU
# Copyright: (C) 2002-2022 IAP/CNRS/SorbonneU
#
# License: GNU General Public License
#
......@@ -22,7 +22,7 @@
# You should have received a copy of the GNU General Public License
# along with SExtractor. If not, see <http://www.gnu.org/licenses/>.
#
# Last modified: 19/02/2020
# Last modified: 11/03/2022
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
......@@ -31,7 +31,7 @@ define([AC_CACHE_LOAD],)
define([AC_CACHE_SAVE],)
# This is your standard AstrOmatic source code...
AC_INIT(SExtractor, 2.25.2, [astromatic@astromatic.net],
AC_INIT(SExtractor, 2.25.3, [astromatic@astromatic.net],
sextractor, [http://astromatic.net/software/sextractor])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR(autoconf)
......
......@@ -67,9 +67,9 @@ author = u'E. Bertin'
# built documents.
#
# The short X.Y version.
version = '2.25.2'
version = '2.25.3'
# The full version, including alpha/beta/rc tags.
release = '2.25.2'
release = '2.25.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
......@@ -81,7 +81,7 @@ language = None
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#
today = 'Wed Aug 12 2020'
today = 'Fri Mar 11 2022'
#
# Else, today_fmt is used as the format for a strftime call.
#
......@@ -144,7 +144,7 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'SExtractor v2.25.2'
# html_title = u'SExtractor v2.25.3'
# A shorter title for the navigation bar. Default is the same as html_title.
#
......
......@@ -7,7 +7,7 @@
*
* This file part of: AstrOmatic FITS/LDAC library
*
* Copyright: (C) 1995-2012 Emmanuel Bertin -- IAP/CNRS/UPMC
* Copyright: (C) 1995-2022 IAP/CNRS/SorbonneU
*
* License: GNU General Public License
*
......@@ -23,7 +23,7 @@
* along with AstrOmatic software.
* If not, see <http://www.gnu.org/licenses/>.
*
* Last modified: 29/08/2012
* Last modified: 11/03/2022
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
......@@ -328,8 +328,8 @@ PURPOSE Update a FITS header according to what's in the table.
INPUT Table structure.
OUTPUT RETURN_OK if tab is a binary table, or RETURN_ERROR otherwise.
NOTES The headbuf pointer in the tabstruct might be reallocated.
AUTHOR E. Bertin (IAP & Leiden observatory)
VERSION 11/06/2007
AUTHOR E. Bertin (IAP/CNRS/SorbonneU)
VERSION 11/03/2022
***/
int update_head(tabstruct *tab)
......@@ -425,7 +425,7 @@ int update_head(tabstruct *tab)
str2lim = str+70; /* Prevent an excessively large string */
for (n=0; n<key->naxis && str2<str2lim; n++)
{
sprintf(str2, n?", %d%n":"%d%n", key->naxisn[n],&j);
sprintf(str2, n?",%d%n":"%d%n", key->naxisn[n],&j);
str2 += j;
}
sprintf(str2, ")");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment