]> git.eshelyaron.com Git - emacs.git/commitdiff
Move the new module unibyte function to the correct module-env.h file
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 14 Oct 2020 03:57:05 +0000 (05:57 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 14 Oct 2020 03:57:05 +0000 (05:57 +0200)
* src/module-env-28.h: Moved here from the -25.h file.

src/module-env-25.h
src/module-env-28.h

index 01c06d5400d764b810cc4cbc1f7e760252787f28..97c7787da343d13352ef9ddba04cf57dc05cc773 100644 (file)
                              const char *str, ptrdiff_t len)
     EMACS_ATTRIBUTE_NONNULL(1, 2);
 
-  /* Create a unibyte Lisp string from a string.  */
-  emacs_value (*make_unibyte_string) (emacs_env *env,
-                                     const char *str, ptrdiff_t len)
-    EMACS_ATTRIBUTE_NONNULL(1, 2);
-
   /* Embedded pointer type.  */
   emacs_value (*make_user_ptr) (emacs_env *env,
                                void (*fin) (void *) EMACS_NOEXCEPT,
index 40b03b92b521503b5a0d59ce1c9f10da47f58263..f8820b0606be3b8f5cb8fc25bc7b732d01b48135 100644 (file)
@@ -16,3 +16,8 @@
   void (*make_interactive) (emacs_env *env, emacs_value function,
                             emacs_value spec)
     EMACS_ATTRIBUTE_NONNULL (1);
+
+  /* Create a unibyte Lisp string from a string.  */
+  emacs_value (*make_unibyte_string) (emacs_env *env,
+                                     const char *str, ptrdiff_t len)
+    EMACS_ATTRIBUTE_NONNULL(1, 2);