aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/search.c')
-rw-r--r--src/search.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/search.c b/src/search.c
index 0b4f635066c..72bd5605709 100644
--- a/src/search.c
+++ b/src/search.c
@@ -1009,7 +1009,7 @@ search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror,
1009 if (!EQ (noerror, Qt)) 1009 if (!EQ (noerror, Qt))
1010 { 1010 {
1011 if (lim < BEGV || lim > ZV) 1011 if (lim < BEGV || lim > ZV)
1012 abort (); 1012 emacs_abort ();
1013 SET_PT_BOTH (lim, lim_byte); 1013 SET_PT_BOTH (lim, lim_byte);
1014 return Qnil; 1014 return Qnil;
1015#if 0 /* This would be clean, but maybe programs depend on 1015#if 0 /* This would be clean, but maybe programs depend on
@@ -1022,7 +1022,7 @@ search_command (Lisp_Object string, Lisp_Object bound, Lisp_Object noerror,
1022 } 1022 }
1023 1023
1024 if (np < BEGV || np > ZV) 1024 if (np < BEGV || np > ZV)
1025 abort (); 1025 emacs_abort ();
1026 1026
1027 SET_PT (np); 1027 SET_PT (np);
1028 1028
@@ -2770,7 +2770,7 @@ Return value is undefined if the last search failed. */)
2770 } 2770 }
2771 else 2771 else
2772 /* last_thing_searched must always be Qt, a buffer, or Qnil. */ 2772 /* last_thing_searched must always be Qt, a buffer, or Qnil. */
2773 abort (); 2773 emacs_abort ();
2774 2774
2775 len = 2 * i + 2; 2775 len = 2 * i + 2;
2776 } 2776 }