]> git.eshelyaron.com Git - emacs.git/commitdiff
* search.c (Fnewline_cache_check): Remove unused locals.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Apr 2014 20:13:59 +0000 (13:13 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 22 Apr 2014 20:13:59 +0000 (13:13 -0700)
src/ChangeLog
src/search.c

index 98d607046c686d20436d11ba0148bde4663b2d4f..2ac144f45a0790d7112654a207377978c9aa2eab 100644 (file)
@@ -1,3 +1,7 @@
+2014-04-22  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * search.c (Fnewline_cache_check): Remove unused locals.
+
 2014-04-22  Eli Zaretskii  <eliz@gnu.org>
 
        * search.c (find_newline1): New subroutine.
index 97087307be39869bea2b742f7e5453a151ced4b7..ab390faf82eee9c65bd4781943ca7cc3fbc6d162 100644 (file)
@@ -3210,10 +3210,9 @@ the buffer.  If the buffer doesn't have a cache, the value is nil.  */)
   (Lisp_Object buffer)
 {
   struct buffer *buf;
-  struct region_cache *nlcache;
   ptrdiff_t shortage, nl_count_cache, nl_count_buf;
   Lisp_Object cache_newlines, buf_newlines, val;
-  ptrdiff_t from, from_byte, found, i;
+  ptrdiff_t from, found, i;
 
   if (NILP (buffer))
     buf = current_buffer;