aboutsummaryrefslogtreecommitdiffstats
path: root/src/search.c
diff options
context:
space:
mode:
authorJoakim Verona2012-09-10 16:03:53 +0200
committerJoakim Verona2012-09-10 16:03:53 +0200
commitb035a30e5cd2f34fedc04c253eeb5a11afed8145 (patch)
treeb9350cce389602f4967bdc1beed745929155ad5d /src/search.c
parent4a37733c693d59a9b83a3fb2d0c7f9461d149f60 (diff)
parenta31a4cdacb196cc96dcb9bd229edb1d635e01344 (diff)
downloademacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.tar.gz
emacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.zip
upstream
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 }