From: Paul Eggert Date: Thu, 26 Jul 2018 08:14:31 +0000 (-0700) Subject: * src/editfns.c (syms_of_editfns): Fix typo in previous change. X-Git-Tag: emacs-27.0.90~4664^2~24 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e4d6ebee213e2d6f37de839c09c05ab0a5346ce3;p=emacs.git * src/editfns.c (syms_of_editfns): Fix typo in previous change. --- 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 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);