aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2003-11-05 16:00:38 +0000
committerStefan Monnier2003-11-05 16:00:38 +0000
commit52fb182157b5f88a9cde8e399f359558cdaf4883 (patch)
tree74323fb8f1c5dabc11b52f299a93fd8011282209 /src
parent870f3610653a9803d8a5c67afb34cade86c275d3 (diff)
downloademacs-52fb182157b5f88a9cde8e399f359558cdaf4883.tar.gz
emacs-52fb182157b5f88a9cde8e399f359558cdaf4883.zip
(XSETTYPE): Remove.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 2638f8c6a79..e038f97e13f 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -318,10 +318,6 @@ enum pvec_type
318#define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS)) 318#define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS))
319#endif 319#endif
320 320
321#ifndef XSETTYPE
322#define XSETTYPE(a, b) ((a) = XUINT (a) | ((EMACS_INT)(b) << VALBITS))
323#endif
324
325/* For integers known to be positive, XFASTINT provides fast retrieval 321/* For integers known to be positive, XFASTINT provides fast retrieval
326 and XSETFASTINT provides fast storage. This takes advantage of the 322 and XSETFASTINT provides fast storage. This takes advantage of the
327 fact that Lisp_Int is 0. 323 fact that Lisp_Int is 0.