mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
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.
This commit is contained in:
parent
db0c016dc5
commit
a8d8107800
2 changed files with 5 additions and 5 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue