projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11e75b0
)
* src/lisp.h (INTEGER_TO_INT): Fix bug.
author
Philipp Stephani
<phst@google.com>
Mon, 22 Apr 2019 16:58:51 +0000
(18:58 +0200)
committer
Philipp Stephani
<phst@google.com>
Mon, 22 Apr 2019 17:04:54 +0000
(19:04 +0200)
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index 8510ad72564b526ff14b4f3f87b215cbd7e3a25d..ee5a8481ae8e69a154b63217c154bd72270b6b7a 100644
(file)
--- a/
src/lisp.h
+++ b/
src/lisp.h
@@
-2645,7
+2645,7
@@
make_uint (uintmax_t n)
#define INTEGER_TO_INT(num, type) \
(TYPE_SIGNED (type) \
? ranged_integer_to_int ((num), TYPE_MINIMUM (type), TYPE_MAXIMUM (type)) \
- : ranged_integer_to_uint ((num), TYPE_M
IN
IMUM (type)))
+ : ranged_integer_to_uint ((num), TYPE_M
AX
IMUM (type)))
\f
/* Forwarding pointer to an int variable.