]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/editfns.c (syms_of_editfns): Fix typo in previous change.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 26 Jul 2018 08:14:31 +0000 (01:14 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 26 Jul 2018 08:15:01 +0000 (01:15 -0700)
src/editfns.c

index df257219e8fd09e6ba1ac8dcaf0f3e97b83cf905..522cb5dcef22fe096cb648115cd19ada0de40654 100644 (file)
@@ -5586,9 +5586,9 @@ This variable is experimental; email 32252@debbugs.gnu.org if you need
 it to be non-nil.  */);
   /* For now, default to true if bignums exist, false in traditional Emacs.  */
 #ifdef lisp_h_FIXNUMP
-  binary_as_unsigned = true;
-#else
   binary_as_unsigned = false;
+#else
+  binary_as_unsigned = true;
 #endif
 
   defsubr (&Spropertize);