]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove two FIXMEs that can't be fixed
authorPhilipp Stephani <phst@google.com>
Sun, 4 Jun 2017 16:46:23 +0000 (18:46 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 4 Jun 2017 17:50:49 +0000 (19:50 +0200)
src/data.c
src/emacs-module.c

index 25859105ee04d10d1403a6c496755a25f4ea357b..e4e55290e62d1baae306b516451019ba665a0d00 100644 (file)
@@ -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)
index 33c5fbd484b011aaf102f5a2da61c7adf1f35c2f..d3c4cac59f623434c26a03d8049e1935f699140a 100644 (file)
@@ -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;
 };
 \f