diff options
| author | Joakim Verona | 2012-09-10 16:03:53 +0200 |
|---|---|---|
| committer | Joakim Verona | 2012-09-10 16:03:53 +0200 |
| commit | b035a30e5cd2f34fedc04c253eeb5a11afed8145 (patch) | |
| tree | b9350cce389602f4967bdc1beed745929155ad5d /src/editfns.c | |
| parent | 4a37733c693d59a9b83a3fb2d0c7f9461d149f60 (diff) | |
| parent | a31a4cdacb196cc96dcb9bd229edb1d635e01344 (diff) | |
| download | emacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.tar.gz emacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.zip | |
upstream
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/editfns.c b/src/editfns.c index a14e043c1bf..65baaf4e3f8 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2783,8 +2783,8 @@ determines whether case is significant or ignored. */) | |||
| 2783 | 2783 | ||
| 2784 | if (!NILP (trt)) | 2784 | if (!NILP (trt)) |
| 2785 | { | 2785 | { |
| 2786 | c1 = CHAR_TABLE_TRANSLATE (trt, c1); | 2786 | c1 = char_table_translate (trt, c1); |
| 2787 | c2 = CHAR_TABLE_TRANSLATE (trt, c2); | 2787 | c2 = char_table_translate (trt, c2); |
| 2788 | } | 2788 | } |
| 2789 | if (c1 < c2) | 2789 | if (c1 < c2) |
| 2790 | return make_number (- 1 - chars); | 2790 | return make_number (- 1 - chars); |
| @@ -4263,7 +4263,7 @@ usage: (format STRING &rest OBJECTS) */) | |||
| 4263 | } | 4263 | } |
| 4264 | 4264 | ||
| 4265 | if (bufsize < p - buf) | 4265 | if (bufsize < p - buf) |
| 4266 | abort (); | 4266 | emacs_abort (); |
| 4267 | 4267 | ||
| 4268 | if (maybe_combine_byte) | 4268 | if (maybe_combine_byte) |
| 4269 | nchars = multibyte_chars_in_text ((unsigned char *) buf, p - buf); | 4269 | nchars = multibyte_chars_in_text ((unsigned char *) buf, p - buf); |
| @@ -4603,7 +4603,7 @@ Transposing beyond buffer boundaries is an error. */) | |||
| 4603 | len1_byte, end2, start2_byte + len2_byte) | 4603 | len1_byte, end2, start2_byte + len2_byte) |
| 4604 | || count_combining_after (BYTE_POS_ADDR (start1_byte), | 4604 | || count_combining_after (BYTE_POS_ADDR (start1_byte), |
| 4605 | len1_byte, end2, start2_byte + len2_byte)) | 4605 | len1_byte, end2, start2_byte + len2_byte)) |
| 4606 | abort (); | 4606 | emacs_abort (); |
| 4607 | } | 4607 | } |
| 4608 | else | 4608 | else |
| 4609 | { | 4609 | { |
| @@ -4615,7 +4615,7 @@ Transposing beyond buffer boundaries is an error. */) | |||
| 4615 | len2_byte, end1, start1_byte + len1_byte) | 4615 | len2_byte, end1, start1_byte + len1_byte) |
| 4616 | || count_combining_after (BYTE_POS_ADDR (start1_byte), | 4616 | || count_combining_after (BYTE_POS_ADDR (start1_byte), |
| 4617 | len1_byte, end2, start2_byte + len2_byte)) | 4617 | len1_byte, end2, start2_byte + len2_byte)) |
| 4618 | abort (); | 4618 | emacs_abort (); |
| 4619 | } | 4619 | } |
| 4620 | #endif | 4620 | #endif |
| 4621 | 4621 | ||