]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fset_buffer_multibyte): Fix previous change.
authorKenichi Handa <handa@m17n.org>
Mon, 2 Jun 2003 00:54:20 +0000 (00:54 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 2 Jun 2003 00:54:20 +0000 (00:54 +0000)
src/buffer.c

index c4c85cf8623a11f9ec71942e28815f511d30f638..1f339995a2defbf0c6de906982476b8300f7d407 100644 (file)
@@ -2050,7 +2050,7 @@ but the contents viewed as characters do change.  */)
   struct buffer *other;
   int undo_enabled_p = !EQ (current_buffer->undo_list, Qt);
   int begv, zv;
-  int narrowed = (BEG != begv || Z != zv);
+  int narrowed = (BEG != BEGV || Z != ZV);
   int modified_p = !NILP (Fbuffer_modified_p (Qnil));
 
   if (current_buffer->base_buffer)