aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorJoakim Verona2011-11-22 15:46:22 +0100
committerJoakim Verona2011-11-22 15:46:22 +0100
commita9c1e05adddf6011c61c0df582c5f2ed423f35c8 (patch)
tree489fac119296416ba2f3530fd3bcb70efbbbdaa6 /src/lisp.h
parent40bb789236e486a3f36eefb2840c293369ce2af3 (diff)
parentb5afc20930c91159a1cbf629bcaa7e251653dc74 (diff)
downloademacs-a9c1e05adddf6011c61c0df582c5f2ed423f35c8.tar.gz
emacs-a9c1e05adddf6011c61c0df582c5f2ed423f35c8.zip
upstream
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5407956c202..2056b7caff8 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -947,7 +947,7 @@ struct Lisp_Vector
947 947
948/* Compute A OP B, using the unsigned comparison operator OP. A and B 948/* Compute A OP B, using the unsigned comparison operator OP. A and B
949 should be integer expressions. This is not the same as 949 should be integer expressions. This is not the same as
950 mathemeatical comparison; for example, UNSIGNED_CMP (0, <, -1) 950 mathematical comparison; for example, UNSIGNED_CMP (0, <, -1)
951 returns 1. For efficiency, prefer plain unsigned comparison if A 951 returns 1. For efficiency, prefer plain unsigned comparison if A
952 and B's sizes both fit (after integer promotion). */ 952 and B's sizes both fit (after integer promotion). */
953#define UNSIGNED_CMP(a, op, b) \ 953#define UNSIGNED_CMP(a, op, b) \
@@ -1881,9 +1881,6 @@ typedef struct {
1881 CHECK_NATNUM (tmp); \ 1881 CHECK_NATNUM (tmp); \
1882 XSETCDR ((x), tmp); \ 1882 XSETCDR ((x), tmp); \
1883 } while (0) 1883 } while (0)
1884
1885/* Cast pointers to this type to compare them. */
1886#define PNTR_COMPARISON_TYPE uintptr_t
1887 1884
1888/* Define a built-in function for calling from Lisp. 1885/* Define a built-in function for calling from Lisp.
1889 `lname' should be the name to give the function in Lisp, 1886 `lname' should be the name to give the function in Lisp,