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
5ef2a3c0
Commit
5ef2a3c0
authored
Sep 19, 1994
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(openp): Fix Lisp_Object vs. int problems.
parent
92992c7e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
src/lread.c
src/lread.c
+5
-3
No files found.
src/lread.c
View file @
5ef2a3c0
...
...
@@ -588,7 +588,8 @@ openp (path, str, suffix, storeptr, exec_only)
/* We succeeded; return this descriptor and filename. */
if
(
storeptr
)
*
storeptr
=
build_string
(
fn
);
RETURN_UNGCPRO
(
fd
);
UNGCPRO
;
return
fd
;
}
}
...
...
@@ -598,10 +599,11 @@ openp (path, str, suffix, storeptr, exec_only)
nsuffix
+=
lsuffix
+
1
;
}
if
(
absolute
)
RETURN_UNGCPRO
(
-
1
)
;
break
;
}
RETURN_UNGCPRO
(
-
1
);
UNGCPRO
;
return
-
1
;
}
...
...
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