Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
446470a9
Commit
446470a9
authored
Sep 24, 2010
by
Eli Zaretskii
Browse files
Fix int/EMACS_INT in bidi.c.
dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer positions.
parent
e6d4aefa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
src/ChangeLog
src/ChangeLog
+3
-0
src/dispextern.h
src/dispextern.h
+1
-1
No files found.
src/ChangeLog
View file @
446470a9
2010-09-24 Eli Zaretskii <eliz@gnu.org>
* dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
positions.
* fns.c (Fcompare_strings, Fstring_lessp, concat)
(string_make_unibyte, Fstring_as_unibyte, Fsubstring)
(Fsubstring_no_properties, substring_both, Ffillarray)
...
...
src/dispextern.h
View file @
446470a9
...
...
@@ -1770,7 +1770,7 @@ typedef enum { NEUTRAL_DIR, L2R, R2L } bidi_dir_t;
/* Data type for storing information about characters we need to
remember. */
struct
bidi_saved_info
{
int
bytepos
,
charpos
;
/* character's buffer position */
EMACS_INT
bytepos
,
charpos
;
/* character's buffer position */
bidi_type_t
type
;
/* character's resolved bidi type */
bidi_type_t
type_after_w1
;
/* original type of the character, after W1 */
bidi_type_t
orig_type
;
/* type as we found it in the buffer */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment