Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
66331187
Commit
66331187
authored
Mar 21, 1992
by
Jim Blandy
Browse files
*** empty log message ***
parent
b19075d1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
etc/MACHINES
etc/MACHINES
+7
-0
src/fileio.c
src/fileio.c
+2
-2
No files found.
etc/MACHINES
View file @
66331187
...
...
@@ -639,6 +639,13 @@ SONY News 3000 series (RISC NEWS) (-machine=news-risc; -opsystem=bsd4-3)
Works, as of 18.56. Note that this is a MIPS architecture machine.
Some versions of the operating system give SIGTRAP for division by zero
instead of the usual signals. This causes division by zero
to make Emacs crash. The system should be fixed to give the proper signal.
Changing Emacs is not a proper solution, because it would prevent
Emacs from working under any debugger. But you can change init_data
in data.c if you wish.
Stardent 1500 or 3000
See Titan.
...
...
src/fileio.c
View file @
66331187
...
...
@@ -1405,7 +1405,7 @@ A prefix arg makes KEEP-TIME non-nil.")
ofd
=
creat
(
XSTRING
(
newname
)
->
data
,
0666
);
#endif
/* VMS */
if
(
ofd
<
0
)
report_file_error
(
"Opening output file"
,
Fcons
(
newname
,
Qnil
));
report_file_error
(
"Opening output file"
,
Fcons
(
newname
,
Qnil
));
record_unwind_protect
(
close_file_unwind
,
make_number
(
ofd
));
...
...
@@ -1413,7 +1413,7 @@ A prefix arg makes KEEP-TIME non-nil.")
QUIT
;
while
((
n
=
read
(
ifd
,
buf
,
sizeof
buf
))
>
0
)
if
(
write
(
ofd
,
buf
,
n
)
!=
n
)
report_file_error
(
"I/O error"
,
Fcons
(
newname
,
Qnil
));
report_file_error
(
"I/O error"
,
Fcons
(
newname
,
Qnil
));
immediate_quit
=
0
;
if
(
fstat
(
ifd
,
&
st
)
>=
0
)
...
...
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