aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert2017-06-11 17:05:03 -0700
committerPaul Eggert2017-06-11 17:05:29 -0700
commitbb534f6afe95723f226117eb52e184838bae4c6a (patch)
tree4d0f99aca009b9f361087b92094cd33a9fb20479 /src/lisp.h
parentd0ff364fe834f043eb5657f9a85613fbb7bb458e (diff)
downloademacs-bb534f6afe95723f226117eb52e184838bae4c6a.tar.gz
emacs-bb534f6afe95723f226117eb52e184838bae4c6a.zip
Remove Lisp_Misc_Float
* src/data.c (Ftype_of): Do not worry about Lisp_Misc_Float. * src/lisp.h (Lisp_Misc_Float): Remove. This placeholder has been unused for two decades; if we ever want to change floats to be a misc type we can bring it back then.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 900c7c5cc3f..ade188fd209 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -466,9 +466,6 @@ enum Lisp_Misc_Type
466#ifdef HAVE_MODULES 466#ifdef HAVE_MODULES
467 Lisp_Misc_User_Ptr, 467 Lisp_Misc_User_Ptr,
468#endif 468#endif
469 /* Currently floats are not a misc type,
470 but let's define this in case we want to change that. */
471 Lisp_Misc_Float,
472 /* This is not a type code. It is for range checking. */ 469 /* This is not a type code. It is for range checking. */
473 Lisp_Misc_Limit 470 Lisp_Misc_Limit
474 }; 471 };