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
d0011c11
Commit
d0011c11
authored
Nov 16, 1994
by
Richard M. Stallman
Browse files
(Fopen_dribble_file): Call fclose only when dribble is non zero.
parent
b9755a12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
src/keyboard.c
src/keyboard.c
+5
-2
No files found.
src/keyboard.c
View file @
d0011c11
...
...
@@ -5575,8 +5575,11 @@ If FILE is nil, close any open dribble file.")
{
if
(
NILP
(
file
))
{
fclose (dribble);
dribble = 0;
if
(
dribble
)
{
fclose
(
dribble
);
dribble
=
0
;
}
}
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