emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master a8d8107 1/2: Move the new module unibyte function to the correct


From: Lars Ingebrigtsen
Subject: master a8d8107 1/2: Move the new module unibyte function to the correct module-env.h file
Date: Tue, 13 Oct 2020 23:59:28 -0400 (EDT)

branch: master
commit a8d810780092cecfbc30fdaeb433aee44ab9f67d
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Move the new module unibyte function to the correct module-env.h file
    
    * src/module-env-28.h: Moved here from the -25.h file.
---
 src/module-env-25.h | 5 -----
 src/module-env-28.h | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/module-env-25.h b/src/module-env-25.h
index 01c06d5..97c7787 100644
--- a/src/module-env-25.h
+++ b/src/module-env-25.h
@@ -102,11 +102,6 @@
                              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,
diff --git a/src/module-env-28.h b/src/module-env-28.h
index 40b03b9..f8820b0 100644
--- a/src/module-env-28.h
+++ b/src/module-env-28.h
@@ -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);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]