summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-08-13 15:45:17 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-08-13 15:55:53 -0700
commit76101698a770d389f22b547c331ec78473040c47 (patch)
tree411115b04cec15dcc216e67818080221dbdaecf5 /src/lisp.h
parenteb787d749f28583906428269b926fa83aef092b9 (diff)
downloademacs-76101698a770d389f22b547c331ec78473040c47.tar.gz
Fix check for unsafe watch descriptor
* src/lisp.h (make_pointer_integer_unsafe): New function. (make_pointer_integer): Use it. * src/gfilenotify.c (dir_monitor_callback): Omit redundant eassert. (Fgfile_add_watch): Signal an error instead of failing an assertion if the pointer does not work.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index b7ef8dc63a0..18d53537cca 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1189,9 +1189,15 @@ XFIXNUMPTR (Lisp_Object a)
}
INLINE Lisp_Object
+make_pointer_integer_unsafe (void *p)
+{
+ return TAG_PTR (Lisp_Int0, p);
+}
+
+INLINE Lisp_Object
make_pointer_integer (void *p)
{
- Lisp_Object a = TAG_PTR (Lisp_Int0, p);
+ Lisp_Object a = make_pointer_integer_unsafe (p);
eassert (FIXNUMP (a) && XFIXNUMPTR (a) == p);
return a;
}