aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-02-15 05:55:45 +0000
committerRichard M. Stallman1993-02-15 05:55:45 +0000
commita5f217b86ea1ed853fc1b20fc2803de2547be3d9 (patch)
tree2079d6448c58ae8e460431f8488a131911ac4290 /src
parent481399bfac6441d94b3e507ed2ceb622dedbf1d9 (diff)
downloademacs-a5f217b86ea1ed853fc1b20fc2803de2547be3d9.tar.gz
emacs-a5f217b86ea1ed853fc1b20fc2803de2547be3d9.zip
(search_command): #if 0 previous change.
Diffstat (limited to 'src')
-rw-r--r--src/search.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/search.c b/src/search.c
index abb38c70241..0cc5fa7fb74 100644
--- a/src/search.c
+++ b/src/search.c
@@ -502,7 +502,12 @@ search_command (string, bound, noerror, count, direction, RE)
502 { 502 {
503 if (lim < BEGV || lim > ZV) 503 if (lim < BEGV || lim > ZV)
504 abort (); 504 abort ();
505 SET_PT (lim);
506 return Qnil;
507#if 0 /* This would be clean, but maybe programs depend on
508 a value of nil here. */
505 np = lim; 509 np = lim;
510#endif
506 } 511 }
507 else 512 else
508 return Qnil; 513 return Qnil;