From: Stefan Monnier Date: Fri, 29 Sep 2023 19:22:06 +0000 (-0400) Subject: * src/regex-emacs.c (STORE_NUMBER): Make it a plain function X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35fbf6f15830f576fd1909f4a8d30e7ba1d777bd;p=emacs.git * src/regex-emacs.c (STORE_NUMBER): Make it a plain function --- diff --git a/src/regex-emacs.c b/src/regex-emacs.c index f4ea867f3c0..a7b3e85969f 100644 --- a/src/regex-emacs.c +++ b/src/regex-emacs.c @@ -340,11 +340,12 @@ typedef enum /* Store NUMBER in two contiguous bytes starting at DESTINATION. */ -#define STORE_NUMBER(destination, number) \ - do { \ - (destination)[0] = (number) & 0377; \ - (destination)[1] = (number) >> 8; \ - } while (false) +static void +STORE_NUMBER (unsigned char *destination, int16_t number) +{ + (destination)[0] = (number) & 0377; + (destination)[1] = (number) >> 8; +} /* Same as STORE_NUMBER, except increment DESTINATION to the byte after where the number is stored. Therefore, DESTINATION