mirror of
https://github.com/uffejakobsen/acme.git
synced 2025-02-21 09:29:39 +00:00
small fix, added "const"
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@382 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
parent
59ef7c71f8
commit
9d71a86a74
@ -886,7 +886,7 @@ void inputchange_macro2_body(char *macro_body)
|
|||||||
input_now->src.ram_ptr = macro_body;
|
input_now->src.ram_ptr = macro_body;
|
||||||
}
|
}
|
||||||
// restore input struct from buffer
|
// restore input struct from buffer
|
||||||
void inputchange_back(struct inputchange_buf *icb)
|
void inputchange_back(const struct inputchange_buf *icb)
|
||||||
{
|
{
|
||||||
input_now = icb->outer_input;
|
input_now = icb->outer_input;
|
||||||
GotByte = icb->gb;
|
GotByte = icb->gb;
|
||||||
|
@ -178,7 +178,7 @@ extern void inputchange_macro1_params(struct inputchange_buf *icb, struct locati
|
|||||||
// switch from macro parameters to macro body
|
// switch from macro parameters to macro body
|
||||||
extern void inputchange_macro2_body(char *macro_body);
|
extern void inputchange_macro2_body(char *macro_body);
|
||||||
// restore input struct from buffer
|
// restore input struct from buffer
|
||||||
extern void inputchange_back(struct inputchange_buf *icb);
|
extern void inputchange_back(const struct inputchange_buf *icb);
|
||||||
|
|
||||||
|
|
||||||
// "include path" stuff:
|
// "include path" stuff:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user