diff options
| author | Joseph Arceneaux | 1992-10-01 00:56:11 +0000 |
|---|---|---|
| committer | Joseph Arceneaux | 1992-10-01 00:56:11 +0000 |
| commit | e115a65b13b36c7d9a2c49eb22ed758fbb1356ca (patch) | |
| tree | 3313a92386b3e07b9ddcd109676499dfc52d840b /src | |
| parent | 1b92beaf6debd3d2164fe37b55913d6420cb230c (diff) | |
| download | emacs-e115a65b13b36c7d9a2c49eb22ed758fbb1356ca.tar.gz emacs-e115a65b13b36c7d9a2c49eb22ed758fbb1356ca.zip | |
* intervals.h: Declare temp_set_point.
Diffstat (limited to 'src')
| -rw-r--r-- | src/intervals.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/intervals.h b/src/intervals.h index 29fca360c98..472dbc57041 100644 --- a/src/intervals.h +++ b/src/intervals.h | |||
| @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License | |||
| 17 | along with GNU Emacs; see the file COPYING. If not, write to | 17 | along with GNU Emacs; see the file COPYING. If not, write to |
| 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | 18 | the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
| 19 | 19 | ||
| 20 | #ifdef USE_INTERVALS | 20 | #ifdef USE_TEXT_PROPERTIES |
| 21 | #include "dispextern.h" | 21 | #include "dispextern.h" |
| 22 | 22 | ||
| 23 | #define NULL_INTERVAL 0 | 23 | #define NULL_INTERVAL 0 |
| @@ -153,9 +153,6 @@ extern INTERVAL make_interval (); | |||
| 153 | 153 | ||
| 154 | /* Declared in intervals.c */ | 154 | /* Declared in intervals.c */ |
| 155 | 155 | ||
| 156 | extern INTERVAL mouse_interval; | ||
| 157 | extern Lisp_Object Vmouse_buffer; | ||
| 158 | extern int mouse_buffer_offset; | ||
| 159 | extern Lisp_Object interval_balance_threshold; | 156 | extern Lisp_Object interval_balance_threshold; |
| 160 | 157 | ||
| 161 | extern INTERVAL create_root_interval (); | 158 | extern INTERVAL create_root_interval (); |
| @@ -169,6 +166,7 @@ extern void delete_interval (); | |||
| 169 | extern INLINE void offset_intervals (); | 166 | extern INLINE void offset_intervals (); |
| 170 | extern void graft_intervals_into_buffer (); | 167 | extern void graft_intervals_into_buffer (); |
| 171 | extern void set_point (); | 168 | extern void set_point (); |
| 169 | extern INLINE void temp_set_point (position, buffer) | ||
| 172 | extern void verify_interval_modification (); | 170 | extern void verify_interval_modification (); |
| 173 | extern INTERVAL balance_intervals (); | 171 | extern INTERVAL balance_intervals (); |
| 174 | extern void copy_intervals_to_string (); | 172 | extern void copy_intervals_to_string (); |
| @@ -193,7 +191,7 @@ extern Lisp_Object Fremove_text_properties (), Ferase_text_properties (); | |||
| 193 | 191 | ||
| 194 | extern void syms_of_textprop (); | 192 | extern void syms_of_textprop (); |
| 195 | 193 | ||
| 196 | #else /* intervals not used */ | 194 | #else /* don't support text properties */ |
| 197 | 195 | ||
| 198 | #define NULL_INTERVAL_P(i) 1 | 196 | #define NULL_INTERVAL_P(i) 1 |
| 199 | #define INTERVAL_SIZE 0 | 197 | #define INTERVAL_SIZE 0 |
| @@ -205,4 +203,6 @@ extern void syms_of_textprop (); | |||
| 205 | #define graft_intervals_into_buffer(tree,position,bufferptr) | 203 | #define graft_intervals_into_buffer(tree,position,bufferptr) |
| 206 | #define offset_intervals(buffer,position,length) | 204 | #define offset_intervals(buffer,position,length) |
| 207 | 205 | ||
| 208 | #endif /* intervals not used */ | 206 | #define syms_of_textprop() |
| 207 | |||
| 208 | #endif /* don't support text properties */ | ||