diff options
| author | Kenichi Handa | 2010-01-14 12:54:04 +0900 |
|---|---|---|
| committer | Kenichi Handa | 2010-01-14 12:54:04 +0900 |
| commit | 35fb32880c99aa7cd41b835dc17b8639b544dc69 (patch) | |
| tree | b5465223c8909d17356f5f4b98ac65dcef439634 /src/buffer.h | |
| parent | d9a7c14092befb75995e75dc66d050af514443e6 (diff) | |
| parent | 38bee10234558578f3f1c4cdc4614afe1ef15cf8 (diff) | |
| download | emacs-35fb32880c99aa7cd41b835dc17b8639b544dc69.tar.gz emacs-35fb32880c99aa7cd41b835dc17b8639b544dc69.zip | |
from trunk
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 9f57a292053..5217c6d7298 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* Header file for the buffer manipulation primitives. | 1 | /* Header file for the buffer manipulation primitives. |
| 2 | Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, | 2 | Copyright (C) 1985, 1986, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001, |
| 3 | 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 | 3 | 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
| 4 | Free Software Foundation, Inc. | 4 | Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | This file is part of GNU Emacs. | 6 | This file is part of GNU Emacs. |
| @@ -158,6 +158,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 158 | /* Overlay modification count. */ | 158 | /* Overlay modification count. */ |
| 159 | #define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff) | 159 | #define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff) |
| 160 | 160 | ||
| 161 | /* Modification count as of last auto-save. */ | ||
| 162 | /* FIXME: should we move this into ->text->auto_save_modiff? */ | ||
| 163 | #define BUF_AUTOSAVE_MODIFF(buf) ((buf)->auto_save_modified) | ||
| 164 | |||
| 161 | /* Interval tree of buffer. */ | 165 | /* Interval tree of buffer. */ |
| 162 | #define BUF_INTERVALS(buf) ((buf)->text->intervals) | 166 | #define BUF_INTERVALS(buf) ((buf)->text->intervals) |
| 163 | 167 | ||