]> code.delx.au - gnu-emacs/blob - src/buffer.h
(Fcall_interactively) <'d', 'r'>: Use set_marker_both.
[gnu-emacs] / src / buffer.h
1 /* Header file for the buffer manipulation primitives.
2 Copyright (C) 1985, 1986, 1993, 1994, 1995 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 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
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21
22 #ifdef USE_TEXT_PROPERTIES
23 #define SET_PT(position) (set_point ((position), current_buffer))
24 #define TEMP_SET_PT(position) (temp_set_point ((position), current_buffer))
25
26 #define BUF_SET_PT(buffer, position) (set_point ((position), (buffer)))
27 #define BUF_TEMP_SET_PT(buffer, position) (temp_set_point ((position), (buffer)))
28
29 extern void set_point P_ ((int, struct buffer *));
30 extern INLINE void temp_set_point P_ ((int, struct buffer *));
31
32 #else /* don't support text properties */
33
34 #define SET_PT(position) (current_buffer->pt = (position))
35 #define TEMP_SET_PT(position) (current_buffer->pt = (position))
36
37 #define BUF_SET_PT(buffer, position) (buffer->pt = (position))
38 #define BUF_TEMP_SET_PT(buffer, position) (buffer->pt = (position))
39 #endif /* don't support text properties */
40
41 /* Character position of beginning of buffer. */
42 #define BEG (1)
43
44 /* Character position of beginning of accessible range of buffer. */
45 #define BEGV (current_buffer->begv)
46
47 /* Character position of point in buffer. The "+ 0" makes this
48 not an l-value, so you can't assign to it. Use SET_PT instead. */
49 #define PT (current_buffer->pt + 0)
50
51 /* Character position of gap in buffer. */
52 #define GPT (current_buffer->text->gpt)
53
54 /* Character position of end of accessible range of buffer. */
55 #define ZV (current_buffer->zv)
56
57 /* Character position of end of buffer. */
58 #define Z (current_buffer->text->z)
59
60 /* Is the current buffer narrowed? */
61 #define NARROWED ((BEGV != BEG) || (ZV != Z))
62
63 /* Modification count. */
64 #define MODIFF (current_buffer->text->modiff)
65
66 /* Overlay modification count. */
67 #define OVERLAY_MODIFF (current_buffer->text->overlay_modiff)
68
69 /* Modification count as of last visit or save. */
70 #define SAVE_MODIFF (current_buffer->text->save_modiff)
71
72 /* Address of beginning of buffer. */
73 #define BEG_ADDR (current_buffer->text->beg)
74
75 /* Address of beginning of accessible range of buffer. */
76 #define BEGV_ADDR (POS_ADDR (current_buffer->begv))
77
78 /* Address of point in buffer. */
79 #define PT_ADDR (POS_ADDR (current_buffer->pt))
80
81 /* Address of beginning of gap in buffer. */
82 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt - 1)
83
84 /* Address of end of gap in buffer. */
85 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt + current_buffer->text->gap_size - 1)
86
87 /* Address of end of accessible range of buffer. */
88 #define ZV_ADDR (POS_ADDR (current_buffer->zv))
89
90 /* Address of end of buffer. */
91 #define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z - 1)
92
93 /* Size of gap. */
94 #define GAP_SIZE (current_buffer->text->gap_size)
95
96 /* Now similar macros for a specified buffer.
97 Note that many of these evaluate the buffer argument more than once. */
98
99 /* Character position of beginning of buffer. */
100 #define BUF_BEG(buf) (1)
101
102 /* Character position of beginning of accessible range of buffer. */
103 #define BUF_BEGV(buf) ((buf)->begv)
104
105 /* Character position of point in buffer. */
106 #define BUF_PT(buf) ((buf)->pt)
107
108 /* Character position of gap in buffer. */
109 #define BUF_GPT(buf) ((buf)->text->gpt)
110
111 /* Character position of end of accessible range of buffer. */
112 #define BUF_ZV(buf) ((buf)->zv)
113
114 /* Character position of end of buffer. */
115 #define BUF_Z(buf) ((buf)->text->z)
116
117 /* Is this buffer narrowed? */
118 #define BUF_NARROWED(buf) ((BUF_BEGV (buf) != BUF_BEG (buf)) \
119 || (BUF_ZV (buf) != BUF_Z (buf)))
120
121 /* Modification count. */
122 #define BUF_MODIFF(buf) ((buf)->text->modiff)
123
124 /* Modification count as of last visit or save. */
125 #define BUF_SAVE_MODIFF(buf) ((buf)->text->save_modiff)
126
127 /* Overlay modification count. */
128 #define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff)
129
130 /* Interval tree of buffer. */
131 #define BUF_INTERVALS(buf) ((buf)->text->intervals)
132
133 /* Marker chain of buffer. */
134 #define BUF_MARKERS(buf) ((buf)->text->markers)
135
136 /* Address of beginning of buffer. */
137 #define BUF_BEG_ADDR(buf) ((buf)->text->beg)
138
139 /* Address of beginning of gap of buffer. */
140 #define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt - 1)
141
142 /* Address of end of buffer. */
143 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z - 1)
144
145 /* Macro for setting the value of BUF_ZV (BUF) to VALUE,
146 by varying the end of the accessible region. */
147 #define SET_BUF_ZV(buf, value) ((buf)->zv = (value))
148 #define SET_BUF_PT(buf, value) ((buf)->pt = (value))
149
150 /* Size of gap. */
151 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size)
152
153 /* Return the address of character at position POS in buffer BUF.
154 Note that both arguments can be computed more than once. */
155 #define BUF_CHAR_ADDRESS(buf, pos) \
156 ((buf)->text->beg + (pos) - 1 \
157 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
158
159 /* Convert the address of a char in the buffer into a character position. */
160 #define PTR_CHAR_POS(ptr) \
161 ((ptr) - (current_buffer)->text->beg \
162 - (ptr - (current_buffer)->text->beg < (unsigned) GPT ? 0 : GAP_SIZE) \
163 + 1)
164
165 /* Convert the address of a char in the buffer into a character position. */
166 #define BUF_PTR_CHAR_POS(buf, ptr) \
167 ((ptr) - (buf)->text->beg \
168 - (ptr - (buf)->text->beg < (unsigned) BUF_GPT ((buf)) \
169 ? 0 : BUF_GAP_SIZE ((buf))) \
170 + 1)
171 \f
172 struct buffer_text
173 {
174 unsigned char *beg; /* Actual address of buffer contents. */
175 int gpt; /* Index of gap in buffer. */
176 int z; /* Index of end of buffer. */
177 int gap_size; /* Size of buffer's gap. */
178 int modiff; /* This counts buffer-modification events
179 for this buffer. It is incremented for
180 each such event, and never otherwise
181 changed. */
182 int save_modiff; /* Previous value of modiff, as of last
183 time buffer visited or saved a file. */
184
185 int overlay_modiff; /* Counts modifications to overlays. */
186
187 /* Properties of this buffer's text -- conditionally compiled. */
188 DECLARE_INTERVALS
189
190 /* The markers that refer to this buffer.
191 This is actually a single marker ---
192 successive elements in its marker `chain'
193 are the other markers referring to this buffer. */
194 Lisp_Object markers;
195 };
196
197 struct buffer
198 {
199 /* Everything before the `name' slot must be of a non-Lisp_Object type,
200 and every slot after `name' must be a Lisp_Object.
201
202 Check out mark_buffer (alloc.c) to see why. */
203
204 EMACS_INT size;
205
206 /* Next buffer, in chain of all buffers including killed buffers.
207 This chain is used only for garbage collection, in order to
208 collect killed buffers properly.
209 Note that vectors and most pseudovectors are all on one chain,
210 but buffers are on a separate chain of their own. */
211 struct buffer *next;
212
213 /* This structure holds the coordinates of the buffer contents
214 in ordinary buffers. In indirect buffers, this is not used. */
215 struct buffer_text own_text;
216
217 /* This points to the `struct buffer_text' that used for this buffer.
218 In an ordinary buffer, this is the own_text field above.
219 In an indirect buffer, this is the own_text field of another buffer. */
220 struct buffer_text *text;
221
222 /* Position of point in buffer. */
223 int pt;
224 /* Index of beginning of accessible range. */
225 int begv;
226 /* Index of end of accessible range. */
227 int zv;
228
229 /* In an indirect buffer, this points to the base buffer.
230 In an ordinary buffer, it is 0. */
231 struct buffer *base_buffer;
232
233 /* Flags saying which DEFVAR_PER_BUFFER variables
234 are local to this buffer. */
235 int local_var_flags;
236 /* Set to the modtime of the visited file when read or written.
237 -1 means visited file was nonexistent.
238 0 means visited file modtime unknown; in no case complain
239 about any mismatch on next save attempt. */
240 int modtime;
241 /* the value of text->modiff at the last auto-save. */
242 int auto_save_modified;
243 /* The time at which we detected a failure to auto-save,
244 Or -1 if we didn't have a failure. */
245 int auto_save_failure_time;
246 /* Position in buffer at which display started
247 the last time this buffer was displayed. */
248 int last_window_start;
249
250 /* Set nonzero whenever the narrowing is changed in this buffer. */
251 int clip_changed;
252
253 /* If the long line scan cache is enabled (i.e. the buffer-local
254 variable cache-long-line-scans is non-nil), newline_cache
255 points to the newline cache, and width_run_cache points to the
256 width run cache.
257
258 The newline cache records which stretches of the buffer are
259 known *not* to contain newlines, so that they can be skipped
260 quickly when we search for newlines.
261
262 The width run cache records which stretches of the buffer are
263 known to contain characters whose widths are all the same. If
264 the width run cache maps a character to a value > 0, that value is
265 the character's width; if it maps a character to zero, we don't
266 know what its width is. This allows compute_motion to process
267 such regions very quickly, using algebra instead of inspecting
268 each character. See also width_table, below. */
269 struct region_cache *newline_cache;
270 struct region_cache *width_run_cache;
271
272 /* Everything from here down must be a Lisp_Object */
273
274
275 /* The name of this buffer. */
276 Lisp_Object name;
277 /* The name of the file visited in this buffer, or nil. */
278 Lisp_Object filename;
279 /* Dir for expanding relative file names. */
280 Lisp_Object directory;
281 /* True iff this buffer has been backed up (if you write to the
282 visited file and it hasn't been backed up, then a backup will
283 be made). */
284 /* This isn't really used by the C code, so could be deleted. */
285 Lisp_Object backed_up;
286 /* Length of file when last read or saved.
287 This is not in the struct buffer_text
288 because it's not used in indirect buffers at all. */
289 Lisp_Object save_length;
290 /* File name used for auto-saving this buffer.
291 This is not in the struct buffer_text
292 because it's not used in indirect buffers at all. */
293 Lisp_Object auto_save_file_name;
294
295 /* Non-nil if buffer read-only. */
296 Lisp_Object read_only;
297 /* "The mark". This is a marker which may
298 point into this buffer or may point nowhere. */
299 Lisp_Object mark;
300
301 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER)
302 for all per-buffer variables of this buffer. */
303 Lisp_Object local_var_alist;
304
305 /* Symbol naming major mode (eg, lisp-mode). */
306 Lisp_Object major_mode;
307 /* Pretty name of major mode (eg, "Lisp"). */
308 Lisp_Object mode_name;
309 /* Mode line element that controls format of mode line. */
310 Lisp_Object mode_line_format;
311
312 /* Keys that are bound local to this buffer. */
313 Lisp_Object keymap;
314 /* This buffer's local abbrev table. */
315 Lisp_Object abbrev_table;
316 /* This buffer's syntax table. */
317 Lisp_Object syntax_table;
318 /* This buffer's category table. */
319 Lisp_Object category_table;
320
321 /* Values of several buffer-local variables */
322 /* tab-width is buffer-local so that redisplay can find it
323 in buffers that are not current */
324 Lisp_Object case_fold_search;
325 Lisp_Object tab_width;
326 Lisp_Object fill_column;
327 Lisp_Object left_margin;
328 /* Function to call when insert space past fill column. */
329 Lisp_Object auto_fill_function;
330 /* nil: text, t: binary.
331 This value is meaningful only on certain operating systems. */
332 /* Actually, we don't need this flag any more because end-of-line
333 is handled correctly according to the buffer-file-coding-system
334 of the buffer. Just keeping it for backward compatibility. */
335 Lisp_Object buffer_file_type;
336
337 /* Case table for case-conversion in this buffer.
338 This char-table maps each char into its lower-case version. */
339 Lisp_Object downcase_table;
340 /* Char-table mapping each char to its upper-case version. */
341 Lisp_Object upcase_table;
342 /* Char-table for conversion for case-folding search. */
343 Lisp_Object case_canon_table;
344 /* Char-table of equivalences for case-folding search. */
345 Lisp_Object case_eqv_table;
346
347 /* Non-nil means do not display continuation lines. */
348 Lisp_Object truncate_lines;
349 /* Non-nil means display ctl chars with uparrow. */
350 Lisp_Object ctl_arrow;
351 /* Non-nil means display text from right to left. */
352 Lisp_Object direction_reversed;
353 /* Non-nil means do selective display;
354 see doc string in syms_of_buffer (buffer.c) for details. */
355 Lisp_Object selective_display;
356 #ifndef old
357 /* Non-nil means show ... at end of line followed by invisible lines. */
358 Lisp_Object selective_display_ellipses;
359 #endif
360 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
361 Lisp_Object minor_modes;
362 /* t if "self-insertion" should overwrite; `binary' if it should also
363 overwrite newlines and tabs - for editing executables and the like. */
364 Lisp_Object overwrite_mode;
365 /* non-nil means abbrev mode is on. Expand abbrevs automatically. */
366 Lisp_Object abbrev_mode;
367 /* Display table to use for text in this buffer. */
368 Lisp_Object display_table;
369 /* t means the mark and region are currently active. */
370 Lisp_Object mark_active;
371
372 /* Changes in the buffer are recorded here for undo.
373 t means don't record anything.
374 This information belongs to the base buffer of an indirect buffer,
375 But we can't store it in the struct buffer_text
376 because local variables have to be right in the struct buffer.
377 So we copy it around in set_buffer_internal. */
378 Lisp_Object undo_list;
379
380 /* List of overlays that end at or before the current center,
381 in order of end-position. */
382 Lisp_Object overlays_before;
383
384 /* List of overlays that end after the current center,
385 in order of start-position. */
386 Lisp_Object overlays_after;
387
388 /* Position where the overlay lists are centered. */
389 Lisp_Object overlay_center;
390
391 /* Non-nil means the buffer contents are regarded as multi-byte
392 form of characters, not a binary code. */
393 Lisp_Object enable_multibyte_characters;
394
395 /* Coding system to be used for encoding the buffer contents on
396 saving. */
397 Lisp_Object buffer_file_coding_system;
398
399 /* List of symbols naming the file format used for visited file. */
400 Lisp_Object file_format;
401
402 /* True if the newline position cache and width run cache are
403 enabled. See search.c and indent.c. */
404 Lisp_Object cache_long_line_scans;
405
406 /* If the width run cache is enabled, this table contains the
407 character widths width_run_cache (see above) assumes. When we
408 do a thorough redisplay, we compare this against the buffer's
409 current display table to see whether the display table has
410 affected the widths of any characters. If it has, we
411 invalidate the width run cache, and re-initialize width_table. */
412 Lisp_Object width_table;
413
414 /* In an indirect buffer, or a buffer that is the base of an
415 indirect buffer, this holds a marker that records
416 PT for this buffer when the buffer is not current. */
417 Lisp_Object pt_marker;
418
419 /* In an indirect buffer, or a buffer that is the base of an
420 indirect buffer, this holds a marker that records
421 BEGV for this buffer when the buffer is not current. */
422 Lisp_Object begv_marker;
423
424 /* In an indirect buffer, or a buffer that is the base of an
425 indirect buffer, this holds a marker that records
426 ZV for this buffer when the buffer is not current. */
427 Lisp_Object zv_marker;
428
429 /* This holds the point value before the last scroll operation.
430 Explicitly setting point sets this to nil. */
431 Lisp_Object point_before_scroll;
432
433 /* Truename of the visited file, or nil. */
434 Lisp_Object file_truename;
435
436 /* Invisibility spec of this buffer.
437 t => any non-nil `invisible' property means invisible.
438 A list => `invisible' property means invisible
439 if it is memq in that list. */
440 Lisp_Object invisibility_spec;
441
442 /* This is the last window that was selected with this buffer in it,
443 or nil if that window no longer displays this buffer. */
444 Lisp_Object last_selected_window;
445
446 /* Incremented each time the buffer is displayed in a window. */
447 Lisp_Object display_count;
448
449 /* These are so we don't have to recompile everything
450 the next few times we add a new slot. */
451 Lisp_Object extra2, extra3;
452 };
453 \f
454 /* This points to the current buffer. */
455
456 extern struct buffer *current_buffer;
457
458 /* This structure holds the default values of the buffer-local variables
459 that have special slots in each buffer.
460 The default value occupies the same slot in this structure
461 as an individual buffer's value occupies in that buffer.
462 Setting the default value also goes through the alist of buffers
463 and stores into each buffer that does not say it has a local value. */
464
465 extern struct buffer buffer_defaults;
466
467 /* This structure marks which slots in a buffer have corresponding
468 default values in buffer_defaults.
469 Each such slot has a nonzero value in this structure.
470 The value has only one nonzero bit.
471
472 When a buffer has its own local value for a slot,
473 the bit for that slot (found in the same slot in this structure)
474 is turned on in the buffer's local_var_flags slot.
475
476 If a slot in this structure is zero, then even though there may
477 be a Lisp-level local variable for the slot, it has no default value,
478 and the corresponding slot in buffer_defaults is not used. */
479
480 extern struct buffer buffer_local_flags;
481
482 /* For each buffer slot, this points to the Lisp symbol name
483 for that slot in the current buffer. It is 0 for slots
484 that don't have such names. */
485
486 extern struct buffer buffer_local_symbols;
487
488 /* This structure holds the required types for the values in the
489 buffer-local slots. If a slot contains Qnil, then the
490 corresponding buffer slot may contain a value of any type. If a
491 slot contains an integer, then prospective values' tags must be
492 equal to that integer. When a tag does not match, the function
493 buffer_slot_type_mismatch will signal an error. The value Qnil may
494 always be safely stored in any slot. */
495 extern struct buffer buffer_local_types;
496 \f
497 /* Return the address of position N. No range checking. */
498 #define POS_ADDR(n) (((n)>= GPT ? GAP_SIZE : 0) + (n) + BEG_ADDR - 1)
499
500 /* Return the byte at position N. No range checking. */
501 #define FETCH_BYTE(n) *(POS_ADDR ((n)))
502
503 /* Variables used locally in FETCH_MULTIBYTE_CHAR. */
504 extern unsigned char *_fetch_multibyte_char_p;
505 extern int _fetch_multibyte_char_len;
506
507 /* Return character code of multi-byte form at position POS. If POS
508 doesn't point the head of valid multi-byte form, only the byte at
509 POS is returned. No range checking. */
510
511 #define FETCH_MULTIBYTE_CHAR(pos) \
512 (_fetch_multibyte_char_p = (((pos) >= GPT ? GAP_SIZE : 0) \
513 + (pos) + BEG_ADDR - 1), \
514 _fetch_multibyte_char_len = ((pos) >= GPT ? ZV : GPT) - (pos), \
515 STRING_CHAR (_fetch_multibyte_char_p, _fetch_multibyte_char_len))
516
517 /* Return character at position POS. No range checking. */
518 #define FETCH_CHAR(pos) \
519 (!NILP (current_buffer->enable_multibyte_characters) \
520 ? FETCH_MULTIBYTE_CHAR ((pos)) \
521 : FETCH_BYTE ((pos)))
522
523 /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return
524 the max (resp. min) p such that
525
526 POS_ADDR (p) - POS_ADDR (n) == p - n */
527
528 #define BUFFER_CEILING_OF(n) (((n) < GPT && GPT < ZV ? GPT : ZV) - 1)
529 #define BUFFER_FLOOR_OF(n) (BEGV <= GPT && GPT <= (n) ? GPT : BEGV)
530
531 extern void reset_buffer P_ ((struct buffer *));
532 extern void evaporate_overlays P_ ((int));
533 extern int overlays_at P_ ((int, int, Lisp_Object **, int *, int *, int *));
534 extern int sort_overlays P_ ((Lisp_Object *, int, struct window *));
535 extern void recenter_overlay_lists P_ ((struct buffer *, int));
536 extern int overlay_strings P_ ((int, struct window *, unsigned char **));
537 extern void validate_region P_ ((Lisp_Object *, Lisp_Object *));
538 extern void set_buffer_internal P_ ((struct buffer *));
539 extern void set_buffer_internal_1 P_ ((struct buffer *));
540 extern void set_buffer_temp P_ ((struct buffer *));
541 extern void record_buffer P_ ((Lisp_Object));
542 extern void buffer_slot_type_mismatch P_ ((int));
543 extern void fix_overlays_before P_ ((struct buffer *, int, int));
544
545
546 EXFUN (Fbuffer_name, 1);
547 EXFUN (Fget_file_buffer, 1);
548 EXFUN (Fnext_overlay_change, 1);
549 EXFUN (Fdelete_overlay, 1);
550
551 /* Functions to call before and after each text change. */
552 extern Lisp_Object Vbefore_change_function;
553 extern Lisp_Object Vafter_change_function;
554 extern Lisp_Object Vbefore_change_functions;
555 extern Lisp_Object Vafter_change_functions;
556 extern Lisp_Object Vfirst_change_hook;
557 extern Lisp_Object Qbefore_change_functions;
558 extern Lisp_Object Qafter_change_functions;
559 extern Lisp_Object Qfirst_change_hook;
560
561 extern Lisp_Object Vdeactivate_mark;
562 extern Lisp_Object Vtransient_mark_mode;
563 \f
564 /* Overlays */
565
566 /* 1 if the OV is an overlay object. */
567 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
568
569 /* Return the marker that stands for where OV starts in the buffer. */
570 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
571
572 /* Return the marker that stands for where OV ends in the buffer. */
573 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
574
575 /* Return the actual buffer position for the marker P.
576 We assume you know which buffer it's pointing into. */
577
578 #define OVERLAY_POSITION(P) \
579 (GC_MARKERP (P) ? marker_position (P) : (abort (), 0))
580
581 /* Allocation of buffer text. */
582
583 #ifdef REL_ALLOC
584 #define BUFFER_ALLOC(data,size) ((unsigned char *) r_alloc (&data, (size)))
585 #define BUFFER_REALLOC(data,size) ((unsigned char *) r_re_alloc (&data, (size)))
586 #define BUFFER_FREE(data) (r_alloc_free (&data))
587 #define R_ALLOC_DECLARE(var,data) (r_alloc_declare (&var, (data)))
588 #else
589 #define BUFFER_ALLOC(data,size) (data = (unsigned char *) malloc ((size)))
590 #define BUFFER_REALLOC(data,size) ((unsigned char *) realloc ((data), (size)))
591 #define BUFFER_FREE(data) (free ((data)))
592 #define R_ALLOC_DECLARE(var,data)
593 #endif