diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-14 05:57:05 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2020-10-14 05:57:05 +0200 |
commit | a8d810780092cecfbc30fdaeb433aee44ab9f67d (patch) | |
tree | f0d2e56368a2106ac2136b9bcaaad54ab79c5124 /src/module-env-28.h | |
parent | db0c016dc5c2441048076a3c7d9d1914e4a41bd6 (diff) | |
download | emacs-a8d810780092cecfbc30fdaeb433aee44ab9f67d.tar.gz emacs-a8d810780092cecfbc30fdaeb433aee44ab9f67d.tar.bz2 emacs-a8d810780092cecfbc30fdaeb433aee44ab9f67d.zip |
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.
Diffstat (limited to 'src/module-env-28.h')
-rw-r--r-- | src/module-env-28.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/module-env-28.h b/src/module-env-28.h index 40b03b92b52..f8820b0606b 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); |