diff options
| author | Richard M. Stallman | 1993-03-07 09:33:13 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-07 09:33:13 +0000 |
| commit | 2f545eea31105cf454568fc8fb42f1d6541bd0a8 (patch) | |
| tree | a1b5c4df228551ef5a874cb5c2170095baf9a5ed /src | |
| parent | 9772455e0d994124eda65fd0f51b088791e84872 (diff) | |
| download | emacs-2f545eea31105cf454568fc8fb42f1d6541bd0a8.tar.gz emacs-2f545eea31105cf454568fc8fb42f1d6541bd0a8.zip | |
(prepare_to_modify_buffer): Set Vdeactivate_mark.
Diffstat (limited to 'src')
| -rw-r--r-- | src/insdel.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c index 7b5b8e083c1..bfbf76861f2 100644 --- a/src/insdel.c +++ b/src/insdel.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Buffer insertion/deletion and gap motion for GNU Emacs. | 1 | /* Buffer insertion/deletion and gap motion for GNU Emacs. |
| 2 | Copyright (C) 1985, 1986 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | This file is part of GNU Emacs. | 4 | This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -511,6 +511,8 @@ prepare_to_modify_buffer (start, end) | |||
| 511 | #endif /* not CLASH_DETECTION */ | 511 | #endif /* not CLASH_DETECTION */ |
| 512 | 512 | ||
| 513 | signal_before_change (start, end); | 513 | signal_before_change (start, end); |
| 514 | |||
| 515 | Vdeactivate_mark = Qt; | ||
| 514 | } | 516 | } |
| 515 | 517 | ||
| 516 | static Lisp_Object | 518 | static Lisp_Object |