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
db743842
Commit
db743842
authored
Jun 04, 2017
by
Philipp Stephani
Browse files
Remove two FIXMEs that can't be fixed
parent
bd3c6eec
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
src/data.c
src/data.c
+4
-6
src/emacs-module.c
src/emacs-module.c
+0
-2
No files found.
src/data.c
View file @
db743842
...
...
@@ -700,12 +700,10 @@ global value outside of any lexical scope. */)
return (EQ (valcontents, Qunbound) ? Qnil : Qt);
}
/* FIXME: It has been previously suggested to make this function an
alias for symbol-function, but upon discussion at Bug#23957,
there is a risk breaking backward compatibility, as some users of
fboundp may expect `t' in particular, rather than any true
value. An alias is still welcome so long as the compatibility
issues are addressed. */
/* It has been previously suggested to make this function an alias for
symbol-function, but upon discussion at Bug#23957, there is a risk
breaking backward compatibility, as some users of fboundp may
expect `t' in particular, rather than any true value. */
DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0,
doc: /* Return t if SYMBOL's function definition is not void. */)
(register Lisp_Object symbol)
...
...
src/emacs-module.c
View file @
db743842
...
...
@@ -88,8 +88,6 @@ struct emacs_env_private
environment. */
struct
emacs_runtime_private
{
/* FIXME: Ideally, we would just define "struct emacs_runtime_private"
as a synonym of "emacs_env", but I don't know how to do that in C. */
emacs_env
pub
;
};
...
...
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