aboutsummaryrefslogtreecommitdiffstats
path: root/src/editfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/editfns.c')
-rw-r--r--src/editfns.c10
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