emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master db74384 01/14: Remove two FIXMEs that can't be fixe


From: Philipp Stephani
Subject: [Emacs-diffs] master db74384 01/14: Remove two FIXMEs that can't be fixed
Date: Sun, 4 Jun 2017 13:54:05 -0400 (EDT)

branch: master
commit db7438426ae4fd756213d56884dd52473d8f9336
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    Remove two FIXMEs that can't be fixed
---
 src/data.c         | 10 ++++------
 src/emacs-module.c |  2 --
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/src/data.c b/src/data.c
index 2585910..e4e5529 100644
--- a/src/data.c
+++ b/src/data.c
@@ -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)
diff --git a/src/emacs-module.c b/src/emacs-module.c
index 33c5fbd..d3c4cac 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -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;
 };
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]