From 520afed181d4639b12155362aa6faa7e09531230 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 5 Jan 1998 17:23:54 +0000 Subject: [PATCH] (FETCH_STRING_CHAR_ADVANCE): New macro. --- src/charset.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/charset.h b/src/charset.h index d2e500a83a7..684ae2ff93f 100644 --- a/src/charset.h +++ b/src/charset.h @@ -560,6 +560,34 @@ extern int iso_charset_table[2][2][128]; ? (actual_len = 1), (unsigned char) *(str) \ : string_to_non_ascii_char (str, len, &actual_len)) +/* Fetch the "next" multibyte character from Lisp string STRING + at byte position BYTEIDX, character position CHARIDX. + Store it into OUTPUT. + + All the args must be side-effect-free. + BYTEIDX and CHARIDX must be lvalues; + we increment them past the character fetched. */ + +#define FETCH_STRING_CHAR_ADVANCE(OUTPUT, STRING, CHARIDX, BYTEIDX) \ +if (1) \ + { \ + unsigned char *fetch_string_char_ptr = &XSTRING (STRING)->data[BYTEIDX]; \ + int fetch_string_char_space_left = XSTRING (STRING)->size_byte - BYTEIDX; \ + int actual_len; \ + \ + OUTPUT \ + = STRING_CHAR_AND_LENGTH (fetch_string_char_ptr, \ + fetch_string_char_space_left, actual_len); \ + \ + BYTEIDX += actual_len; \ + CHARIDX++; \ + } \ +else + + /* Nonzero enables use of dialog boxes for questions + asked by mouse commands. */ + int use_dialog_box; + /* Return the length of the multi-byte form at string STR of length LEN. */ #define MULTIBYTE_FORM_LENGTH(str, len) \ -- 2.39.2