diff options
| author | Richard M. Stallman | 1993-03-07 09:33:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-03-07 09:33:43 +0000 |
| commit | 83ec8b67da4885ccc1c7f7d9236091e603f039dd (patch) | |
| tree | 71ad54715da6cd7a41d6d0375b85d6664bcfdabb /src/buffer.h | |
| parent | 2f545eea31105cf454568fc8fb42f1d6541bd0a8 (diff) | |
| download | emacs-83ec8b67da4885ccc1c7f7d9236091e603f039dd.tar.gz emacs-83ec8b67da4885ccc1c7f7d9236091e603f039dd.zip | |
(struct buffer): New field mark_active.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index f1113ddcacf..99f30d0315f 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* Header file for the buffer manipulation primitives. | 1 | /* Header file for the buffer manipulation primitives. |
| 2 | Copyright (C) 1985, 1986, 1990, 1992 Free Software Foundation, Inc. | 2 | Copyright (C) 1985, 1986, 1990, 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 | ||
| @@ -269,6 +269,8 @@ struct buffer | |||
| 269 | /* Changes in the buffer are recorded here for undo. | 269 | /* Changes in the buffer are recorded here for undo. |
| 270 | t means don't record anything. */ | 270 | t means don't record anything. */ |
| 271 | Lisp_Object undo_list; | 271 | Lisp_Object undo_list; |
| 272 | /* t means the mark and region are currently active. */ | ||
| 273 | Lisp_Object mark_active; | ||
| 272 | 274 | ||
| 273 | /* List of fields in this buffer. */ | 275 | /* List of fields in this buffer. */ |
| 274 | Lisp_Object fieldlist; | 276 | Lisp_Object fieldlist; |
| @@ -338,6 +340,9 @@ extern Lisp_Object Vafter_change_function; | |||
| 338 | extern Lisp_Object Vfirst_change_hook; | 340 | extern Lisp_Object Vfirst_change_hook; |
| 339 | extern Lisp_Object Qfirst_change_hook; | 341 | extern Lisp_Object Qfirst_change_hook; |
| 340 | 342 | ||
| 343 | extern Lisp_Object Vdeactivate_mark; | ||
| 344 | extern Lisp_Object Vtransient_mark_mode; | ||
| 345 | |||
| 341 | /* Fields. | 346 | /* Fields. |
| 342 | 347 | ||
| 343 | A field is like a marker but it defines a region rather than a | 348 | A field is like a marker but it defines a region rather than a |