Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-pipeline
msc
sextractor
Commits
9689a1c4
Commit
9689a1c4
authored
Mar 11, 2022
by
Emmanuel Bertin
Browse files
Fixed #22: removed extra space in TDIM strings.
parent
33253012
Changes
3
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
9689a1c4
...
...
@@ -7,7 +7,7 @@
#
# This file part of: SExtractor
#
# Copyright: (C) 2002-202
0
IAP/CNRS/SorbonneU
# Copyright: (C) 2002-202
2
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: 1
9
/0
2
/202
0
# Last modified: 1
1
/0
3
/202
2
#
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
...
...
@@ -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)
...
...
doc/src/conf.py
View file @
9689a1c4
...
...
@@ -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
1
2
202
0
'
today
=
'
Fri Mar
1
1
202
2
'
#
# 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.
#
...
...
src/fits/fitshead.c
View file @
9689a1c4
...
...
@@ -7,7 +7,7 @@
*
* This file part of: AstrOmatic FITS/LDAC library
*
* Copyright: (C) 1995-20
12 Emmanuel Bertin --
IAP/CNRS/
UPMC
* Copyright: (C) 1995-20
22
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
/0
8
/20
1
2
* Last modified:
11
/0
3
/20
2
2
*
*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
...
...
@@ -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/0
6
/20
07
AUTHOR E. Bertin (IAP
/CNRS/SorbonneU
)
VERSION 11/0
3
/20
22
***/
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
,
")"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment