diff options
| author | Eli Zaretskii | 2010-01-01 10:17:13 -0500 |
|---|---|---|
| committer | Eli Zaretskii | 2010-01-01 10:17:13 -0500 |
| commit | ad55bd468c67f4961fc47e6ba0786259b15fe7ff (patch) | |
| tree | 7e3850e8793c44c808d62d8521b8bca2ff8b9b92 /src | |
| parent | 9443b3c70494e010991a11b3be68e4777559df04 (diff) | |
| download | emacs-ad55bd468c67f4961fc47e6ba0786259b15fe7ff.tar.gz emacs-ad55bd468c67f4961fc47e6ba0786259b15fe7ff.zip | |
This commits the exact copies of files I had before switch to bzr.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 2 | ||||
| -rw-r--r-- | src/dispextern.h | 2 | ||||
| -rw-r--r-- | src/dispnew.c | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 60e7ac1ee0f..dbb4f711185 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -1052,7 +1052,7 @@ doc.o: buildobj.h | |||
| 1052 | 1052 | ||
| 1053 | atimer.o: atimer.c atimer.h syssignal.h systime.h lisp.h blockinput.h \ | 1053 | atimer.o: atimer.c atimer.h syssignal.h systime.h lisp.h blockinput.h \ |
| 1054 | $(config_h) | 1054 | $(config_h) |
| 1055 | bidi.o: bidi.c buffer.h character.h dispextern.h | 1055 | bidi.o: bidi.c buffer.h character.h dispextern.h lisp.h $(config_h) |
| 1056 | buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ | 1056 | buffer.o: buffer.c buffer.h region-cache.h commands.h window.h \ |
| 1057 | $(INTERVALS_H) blockinput.h atimer.h systime.h character.h \ | 1057 | $(INTERVALS_H) blockinput.h atimer.h systime.h character.h \ |
| 1058 | indent.h keyboard.h coding.h keymap.h frame.h lisp.h $(config_h) | 1058 | indent.h keyboard.h coding.h keymap.h frame.h lisp.h $(config_h) |
diff --git a/src/dispextern.h b/src/dispextern.h index 58e6ff91338..510ffe50dab 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1799,7 +1799,7 @@ struct bidi_it { | |||
| 1799 | bidi_dir_t sor; /* direction of start-of-run in effect */ | 1799 | bidi_dir_t sor; /* direction of start-of-run in effect */ |
| 1800 | int scan_dir; /* direction of text scan */ | 1800 | int scan_dir; /* direction of text scan */ |
| 1801 | int stack_idx; /* index of current data on the stack */ | 1801 | int stack_idx; /* index of current data on the stack */ |
| 1802 | /* Note: Everything from here is not copied/saved when the bidi | 1802 | /* Note: Everything from here on is not copied/saved when the bidi |
| 1803 | iterator state is saved, pushed, or popped. So only put here | 1803 | iterator state is saved, pushed, or popped. So only put here |
| 1804 | stuff that is not part of the bidi iterator's state! */ | 1804 | stuff that is not part of the bidi iterator's state! */ |
| 1805 | struct bidi_stack level_stack[BIDI_MAXLEVEL]; /* stack of embedding levels */ | 1805 | struct bidi_stack level_stack[BIDI_MAXLEVEL]; /* stack of embedding levels */ |
diff --git a/src/dispnew.c b/src/dispnew.c index b5764ac7fe3..94bbab225f9 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -1760,8 +1760,6 @@ check_matrix_invariants (w) | |||
| 1760 | 1760 | ||
| 1761 | /* Check that end position of `row' is equal to start position | 1761 | /* Check that end position of `row' is equal to start position |
| 1762 | of next row. */ | 1762 | of next row. */ |
| 1763 | /* WARNING: This assumption is blatantly incorrect when we are | ||
| 1764 | reordering bdirectional text for display!! */ | ||
| 1765 | if (next->enabled_p && MATRIX_ROW_DISPLAYS_TEXT_P (next)) | 1763 | if (next->enabled_p && MATRIX_ROW_DISPLAYS_TEXT_P (next)) |
| 1766 | { | 1764 | { |
| 1767 | xassert (MATRIX_ROW_END_CHARPOS (row) | 1765 | xassert (MATRIX_ROW_END_CHARPOS (row) |