]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/regex-emacs.c (STORE_NUMBER): Make it a plain function
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Sep 2023 19:22:06 +0000 (15:22 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 29 Sep 2023 19:22:06 +0000 (15:22 -0400)
src/regex-emacs.c

index f4ea867f3c04c28de4fa7469c17fd9650b9c823a..a7b3e85969fc57461160a0bf9601d558fa8b2eda 100644 (file)
@@ -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