aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhilipp Stephani2017-06-04 18:46:23 +0200
committerPhilipp Stephani2017-06-04 19:50:49 +0200
commitdb7438426ae4fd756213d56884dd52473d8f9336 (patch)
treeae22926ddf1c22339b9a14d433fb924c3ce886e1 /src
parentbd3c6eeca1c69f95ab0c5eea5b542d0334abde68 (diff)
downloademacs-db7438426ae4fd756213d56884dd52473d8f9336.tar.gz
emacs-db7438426ae4fd756213d56884dd52473d8f9336.zip
Remove two FIXMEs that can't be fixed
Diffstat (limited to 'src')
-rw-r--r--src/data.c10
-rw-r--r--src/emacs-module.c2
2 files changed, 4 insertions, 8 deletions
diff --git a/src/data.c b/src/data.c
index 25859105ee0..e4e55290e62 100644
--- a/src/data.c
+++ b/src/data.c
@@ -700,12 +700,10 @@ global value outside of any lexical scope. */)
700 return (EQ (valcontents, Qunbound) ? Qnil : Qt); 700 return (EQ (valcontents, Qunbound) ? Qnil : Qt);
701} 701}
702 702
703/* FIXME: It has been previously suggested to make this function an 703/* It has been previously suggested to make this function an alias for
704 alias for symbol-function, but upon discussion at Bug#23957, 704 symbol-function, but upon discussion at Bug#23957, there is a risk
705 there is a risk breaking backward compatibility, as some users of 705 breaking backward compatibility, as some users of fboundp may
706 fboundp may expect `t' in particular, rather than any true 706 expect `t' in particular, rather than any true value. */
707 value. An alias is still welcome so long as the compatibility
708 issues are addressed. */
709DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0, 707DEFUN ("fboundp", Ffboundp, Sfboundp, 1, 1, 0,
710 doc: /* Return t if SYMBOL's function definition is not void. */) 708 doc: /* Return t if SYMBOL's function definition is not void. */)
711 (register Lisp_Object symbol) 709 (register Lisp_Object symbol)
diff --git a/src/emacs-module.c b/src/emacs-module.c
index 33c5fbd484b..d3c4cac59f6 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -88,8 +88,6 @@ struct emacs_env_private
88 environment. */ 88 environment. */
89struct emacs_runtime_private 89struct emacs_runtime_private
90{ 90{
91 /* FIXME: Ideally, we would just define "struct emacs_runtime_private"
92 as a synonym of "emacs_env", but I don't know how to do that in C. */
93 emacs_env pub; 91 emacs_env pub;
94}; 92};
95 93