aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2018-07-26 01:14:31 -0700
committerPaul Eggert2018-07-26 01:15:01 -0700
commite4d6ebee213e2d6f37de839c09c05ab0a5346ce3 (patch)
treed5c78406dd64c076a49ff1c7ef7cf907de265f04
parent4a56ca5bbfabbb9c581828cd91648346e6b03844 (diff)
downloademacs-e4d6ebee213e2d6f37de839c09c05ab0a5346ce3.tar.gz
emacs-e4d6ebee213e2d6f37de839c09c05ab0a5346ce3.zip
* src/editfns.c (syms_of_editfns): Fix typo in previous change.
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index df257219e8f..522cb5dcef2 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -5586,9 +5586,9 @@ This variable is experimental; email 32252@debbugs.gnu.org if you need
5586it to be non-nil. */); 5586it to be non-nil. */);
5587 /* For now, default to true if bignums exist, false in traditional Emacs. */ 5587 /* For now, default to true if bignums exist, false in traditional Emacs. */
5588#ifdef lisp_h_FIXNUMP 5588#ifdef lisp_h_FIXNUMP
5589 binary_as_unsigned = true;
5590#else
5591 binary_as_unsigned = false; 5589 binary_as_unsigned = false;
5590#else
5591 binary_as_unsigned = true;
5592#endif 5592#endif
5593 5593
5594 defsubr (&Spropertize); 5594 defsubr (&Spropertize);