1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(Fset_buffer_multibyte): Fix previous change.

This commit is contained in:
Kenichi Handa 2003-06-02 00:54:20 +00:00
parent 7335b33637
commit 8d1203eafb

View 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)