Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
86246708
Commit
86246708
authored
May 22, 1995
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fformat): Split double into two pointers, not two ints.
parent
55e1c92a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/editfns.c
src/editfns.c
+3
-3
No files found.
src/editfns.c
View file @
86246708
...
...
@@ -1870,11 +1870,11 @@ Use %% to put a single % into the output.")
#ifdef LISP_FLOAT_TYPE
else
if
(
FLOATP
(
args
[
n
]))
{
union
{
double
d
;
int
half
[
2
];
}
u
;
union
{
double
d
;
char
*
half
[
2
];
}
u
;
u
.
d
=
XFLOAT
(
args
[
n
])
->
data
;
strings
[
i
++
]
=
(
unsigned
char
*
)
(
EMACS_INT
)
u
.
half
[
0
];
strings
[
i
++
]
=
(
unsigned
char
*
)
(
EMACS_INT
)
u
.
half
[
1
];
strings
[
i
++
]
=
(
unsigned
char
*
)
u
.
half
[
0
];
strings
[
i
++
]
=
(
unsigned
char
*
)
u
.
half
[
1
];
}
#endif
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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