Auto-generate EXFUN using make-docfile
[bpt/emacs.git] / src / buffer.h
1 /* Header file for the buffer manipulation primitives.
2
3 Copyright (C) 1985-1986, 1993-1995, 1997-2012
4 Free Software Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20
21 #include <sys/types.h> /* for off_t, time_t */
22 #include "systime.h" /* for EMACS_TIME */
23
24 /* Accessing the parameters of the current buffer. */
25
26 /* These macros come in pairs, one for the char position
27 and one for the byte position. */
28
29 /* Position of beginning of buffer. */
30 #define BEG (1)
31 #define BEG_BYTE (BEG)
32
33 /* Position of beginning of accessible range of buffer. */
34 #define BEGV (current_buffer->begv)
35 #define BEGV_BYTE (current_buffer->begv_byte)
36
37 /* Position of point in buffer. The "+ 0" makes this
38 not an l-value, so you can't assign to it. Use SET_PT instead. */
39 #define PT (current_buffer->pt + 0)
40 #define PT_BYTE (current_buffer->pt_byte + 0)
41
42 /* Position of gap in buffer. */
43 #define GPT (current_buffer->text->gpt)
44 #define GPT_BYTE (current_buffer->text->gpt_byte)
45
46 /* Position of end of accessible range of buffer. */
47 #define ZV (current_buffer->zv)
48 #define ZV_BYTE (current_buffer->zv_byte)
49
50 /* Position of end of buffer. */
51 #define Z (current_buffer->text->z)
52 #define Z_BYTE (current_buffer->text->z_byte)
53
54 /* Macros for the addresses of places in the buffer. */
55
56 /* Address of beginning of buffer. */
57 #define BEG_ADDR (current_buffer->text->beg)
58
59 /* Address of beginning of accessible range of buffer. */
60 #define BEGV_ADDR (BYTE_POS_ADDR (current_buffer->begv_byte))
61
62 /* Address of point in buffer. */
63 #define PT_ADDR (BYTE_POS_ADDR (current_buffer->pt_byte))
64
65 /* Address of beginning of gap in buffer. */
66 #define GPT_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte - BEG_BYTE)
67
68 /* Address of end of gap in buffer. */
69 #define GAP_END_ADDR (current_buffer->text->beg + current_buffer->text->gpt_byte + current_buffer->text->gap_size - BEG_BYTE)
70
71 /* Address of end of accessible range of buffer. */
72 #define ZV_ADDR (BYTE_POS_ADDR (current_buffer->zv_byte))
73
74 /* Address of end of buffer. */
75 #define Z_ADDR (current_buffer->text->beg + current_buffer->text->gap_size + current_buffer->text->z_byte - BEG_BYTE)
76
77 /* Size of gap. */
78 #define GAP_SIZE (current_buffer->text->gap_size)
79
80 /* Is the current buffer narrowed? */
81 #define NARROWED ((BEGV != BEG) || (ZV != Z))
82
83 /* Modification count. */
84 #define MODIFF (current_buffer->text->modiff)
85
86 /* Character modification count. */
87 #define CHARS_MODIFF (current_buffer->text->chars_modiff)
88
89 /* Overlay modification count. */
90 #define OVERLAY_MODIFF (current_buffer->text->overlay_modiff)
91
92 /* Modification count as of last visit or save. */
93 #define SAVE_MODIFF (current_buffer->text->save_modiff)
94
95 /* BUFFER_CEILING_OF (resp. BUFFER_FLOOR_OF), when applied to n, return
96 the max (resp. min) p such that
97
98 BYTE_POS_ADDR (p) - BYTE_POS_ADDR (n) == p - n */
99
100 #define BUFFER_CEILING_OF(BYTEPOS) \
101 (((BYTEPOS) < GPT_BYTE && GPT < ZV ? GPT_BYTE : ZV_BYTE) - 1)
102 #define BUFFER_FLOOR_OF(BYTEPOS) \
103 (BEGV <= GPT && GPT_BYTE <= (BYTEPOS) ? GPT_BYTE : BEGV_BYTE)
104 \f
105 /* Similar macros to operate on a specified buffer.
106 Note that many of these evaluate the buffer argument more than once. */
107
108 /* Position of beginning of buffer. */
109 #define BUF_BEG(buf) (BEG)
110 #define BUF_BEG_BYTE(buf) (BEG_BYTE)
111
112 /* The BUF_BEGV[_BYTE], BUF_ZV[_BYTE], and BUF_PT[_BYTE] macros cannot
113 be used for assignment; use SET_BUF_* macros below for that. */
114
115 /* Position of beginning of accessible range of buffer. */
116 #define BUF_BEGV(buf) \
117 (buf == current_buffer ? BEGV \
118 : NILP (BVAR (buf, begv_marker)) ? buf->begv \
119 : marker_position (BVAR (buf, begv_marker)))
120
121 #define BUF_BEGV_BYTE(buf) \
122 (buf == current_buffer ? BEGV_BYTE \
123 : NILP (BVAR (buf, begv_marker)) ? buf->begv_byte \
124 : marker_byte_position (BVAR (buf, begv_marker)))
125
126 /* Position of point in buffer. */
127 #define BUF_PT(buf) \
128 (buf == current_buffer ? PT \
129 : NILP (BVAR (buf, pt_marker)) ? buf->pt \
130 : marker_position (BVAR (buf, pt_marker)))
131
132 #define BUF_PT_BYTE(buf) \
133 (buf == current_buffer ? PT_BYTE \
134 : NILP (BVAR (buf, pt_marker)) ? buf->pt_byte \
135 : marker_byte_position (BVAR (buf, pt_marker)))
136
137 /* Position of end of accessible range of buffer. */
138 #define BUF_ZV(buf) \
139 (buf == current_buffer ? ZV \
140 : NILP (BVAR (buf, zv_marker)) ? buf->zv \
141 : marker_position (BVAR (buf, zv_marker)))
142
143 #define BUF_ZV_BYTE(buf) \
144 (buf == current_buffer ? ZV_BYTE \
145 : NILP (BVAR (buf, zv_marker)) ? buf->zv_byte \
146 : marker_byte_position (BVAR (buf, zv_marker)))
147
148 /* Position of gap in buffer. */
149 #define BUF_GPT(buf) ((buf)->text->gpt)
150 #define BUF_GPT_BYTE(buf) ((buf)->text->gpt_byte)
151
152 /* Position of end of buffer. */
153 #define BUF_Z(buf) ((buf)->text->z)
154 #define BUF_Z_BYTE(buf) ((buf)->text->z_byte)
155
156 /* Address of beginning of buffer. */
157 #define BUF_BEG_ADDR(buf) ((buf)->text->beg)
158
159 /* Address of beginning of gap of buffer. */
160 #define BUF_GPT_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte - BEG_BYTE)
161
162 /* Address of end of buffer. */
163 #define BUF_Z_ADDR(buf) ((buf)->text->beg + (buf)->text->gap_size + (buf)->text->z_byte - BEG_BYTE)
164
165 /* Address of end of gap in buffer. */
166 #define BUF_GAP_END_ADDR(buf) ((buf)->text->beg + (buf)->text->gpt_byte + (buf)->text->gap_size - BEG_BYTE)
167
168 /* Size of gap. */
169 #define BUF_GAP_SIZE(buf) ((buf)->text->gap_size)
170
171 /* Is this buffer narrowed? */
172 #define BUF_NARROWED(buf) ((BUF_BEGV (buf) != BUF_BEG (buf)) \
173 || (BUF_ZV (buf) != BUF_Z (buf)))
174
175 /* Modification count. */
176 #define BUF_MODIFF(buf) ((buf)->text->modiff)
177
178 /* Character modification count. */
179 #define BUF_CHARS_MODIFF(buf) ((buf)->text->chars_modiff)
180
181 /* Modification count as of last visit or save. */
182 #define BUF_SAVE_MODIFF(buf) ((buf)->text->save_modiff)
183
184 /* Overlay modification count. */
185 #define BUF_OVERLAY_MODIFF(buf) ((buf)->text->overlay_modiff)
186
187 /* Modification count as of last auto-save. */
188 /* FIXME: should we move this into ->text->auto_save_modiff? */
189 #define BUF_AUTOSAVE_MODIFF(buf) ((buf)->auto_save_modified)
190
191 /* Interval tree of buffer. */
192 #define BUF_INTERVALS(buf) ((buf)->text->intervals)
193
194 /* Marker chain of buffer. */
195 #define BUF_MARKERS(buf) ((buf)->text->markers)
196
197 #define BUF_UNCHANGED_MODIFIED(buf) \
198 ((buf)->text->unchanged_modified)
199
200 #define BUF_OVERLAY_UNCHANGED_MODIFIED(buf) \
201 ((buf)->text->overlay_unchanged_modified)
202 #define BUF_BEG_UNCHANGED(buf) ((buf)->text->beg_unchanged)
203 #define BUF_END_UNCHANGED(buf) ((buf)->text->end_unchanged)
204
205 #define UNCHANGED_MODIFIED \
206 BUF_UNCHANGED_MODIFIED (current_buffer)
207 #define OVERLAY_UNCHANGED_MODIFIED \
208 BUF_OVERLAY_UNCHANGED_MODIFIED (current_buffer)
209 #define BEG_UNCHANGED BUF_BEG_UNCHANGED (current_buffer)
210 #define END_UNCHANGED BUF_END_UNCHANGED (current_buffer)
211
212 /* Compute how many characters at the top and bottom of BUF are
213 unchanged when the range START..END is modified. This computation
214 must be done each time BUF is modified. */
215
216 #define BUF_COMPUTE_UNCHANGED(buf, start, end) \
217 do \
218 { \
219 if (BUF_UNCHANGED_MODIFIED (buf) == BUF_MODIFF (buf) \
220 && (BUF_OVERLAY_UNCHANGED_MODIFIED (buf) \
221 == BUF_OVERLAY_MODIFF (buf))) \
222 { \
223 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
224 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
225 } \
226 else \
227 { \
228 if (BUF_Z (buf) - (end) < BUF_END_UNCHANGED (buf)) \
229 BUF_END_UNCHANGED (buf) = BUF_Z (buf) - (end); \
230 if ((start) - BUF_BEG (buf) < BUF_BEG_UNCHANGED (buf)) \
231 BUF_BEG_UNCHANGED (buf) = (start) - BUF_BEG (buf); \
232 } \
233 } \
234 while (0)
235
236 \f
237 /* Macros to set PT in the current buffer, or another buffer. */
238
239 #define SET_PT(position) (set_point (position))
240 #define TEMP_SET_PT(position) (temp_set_point (current_buffer, (position)))
241
242 #define SET_PT_BOTH(position, byte) (set_point_both (position, byte))
243 #define TEMP_SET_PT_BOTH(position, byte) \
244 (temp_set_point_both (current_buffer, (position), (byte)))
245
246 #define BUF_TEMP_SET_PT(buffer, position) \
247 (temp_set_point ((buffer), (position)))
248
249 extern void set_point (ptrdiff_t);
250 extern void temp_set_point (struct buffer *, ptrdiff_t);
251 extern void set_point_both (ptrdiff_t, ptrdiff_t);
252 extern void temp_set_point_both (struct buffer *,
253 ptrdiff_t, ptrdiff_t);
254 extern void enlarge_buffer_text (struct buffer *, ptrdiff_t);
255
256 \f
257 /* Macros for setting the BEGV, ZV or PT of a given buffer.
258
259 The ..._BOTH macros take both a charpos and a bytepos,
260 which must correspond to each other.
261
262 The macros without ..._BOTH take just a charpos,
263 and compute the bytepos from it. */
264
265 #define SET_BUF_BEGV(buf, charpos) \
266 ((buf)->begv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
267 (buf)->begv = (charpos))
268
269 #define SET_BUF_ZV(buf, charpos) \
270 ((buf)->zv_byte = buf_charpos_to_bytepos ((buf), (charpos)), \
271 (buf)->zv = (charpos))
272
273 #define SET_BUF_BEGV_BOTH(buf, charpos, byte) \
274 ((buf)->begv = (charpos), \
275 (buf)->begv_byte = (byte))
276
277 #define SET_BUF_ZV_BOTH(buf, charpos, byte) \
278 ((buf)->zv = (charpos), \
279 (buf)->zv_byte = (byte))
280
281 #define SET_BUF_PT_BOTH(buf, charpos, byte) \
282 ((buf)->pt = (charpos), \
283 (buf)->pt_byte = (byte))
284 \f
285 /* Macros to access a character or byte in the current buffer,
286 or convert between a byte position and an address.
287 These macros do not check that the position is in range. */
288
289 /* Access a Lisp position value in POS,
290 and store the charpos in CHARPOS and the bytepos in BYTEPOS. */
291
292 #define DECODE_POSITION(charpos, bytepos, pos) \
293 do \
294 { \
295 Lisp_Object __pos = (pos); \
296 if (NUMBERP (__pos)) \
297 { \
298 charpos = __pos; \
299 bytepos = buf_charpos_to_bytepos (current_buffer, __pos); \
300 } \
301 else if (MARKERP (__pos)) \
302 { \
303 charpos = marker_position (__pos); \
304 bytepos = marker_byte_position (__pos); \
305 } \
306 else \
307 wrong_type_argument (Qinteger_or_marker_p, __pos); \
308 } \
309 while (0)
310
311 /* Maximum number of bytes in a buffer.
312 A buffer cannot contain more bytes than a 1-origin fixnum can represent,
313 nor can it be so large that C pointer arithmetic stops working.
314 The ptrdiff_t cast ensures that this is signed, not unsigned. */
315 #define BUF_BYTES_MAX \
316 (ptrdiff_t) min (MOST_POSITIVE_FIXNUM - 1, min (SIZE_MAX, PTRDIFF_MAX))
317
318 /* Return the address of byte position N in current buffer. */
319
320 #define BYTE_POS_ADDR(n) \
321 (((n) >= GPT_BYTE ? GAP_SIZE : 0) + (n) + BEG_ADDR - BEG_BYTE)
322
323 /* Return the address of char position N. */
324
325 #define CHAR_POS_ADDR(n) \
326 (((n) >= GPT ? GAP_SIZE : 0) \
327 + buf_charpos_to_bytepos (current_buffer, n) \
328 + BEG_ADDR - BEG_BYTE)
329
330 /* Convert a character position to a byte position. */
331
332 #define CHAR_TO_BYTE(charpos) \
333 (buf_charpos_to_bytepos (current_buffer, charpos))
334
335 /* Convert a byte position to a character position. */
336
337 #define BYTE_TO_CHAR(bytepos) \
338 (buf_bytepos_to_charpos (current_buffer, bytepos))
339
340 /* Convert PTR, the address of a byte in the buffer, into a byte position. */
341
342 #define PTR_BYTE_POS(ptr) \
343 ((ptr) - (current_buffer)->text->beg \
344 - (ptr - (current_buffer)->text->beg <= GPT_BYTE - BEG_BYTE ? 0 : GAP_SIZE) \
345 + BEG_BYTE)
346
347 /* Return character at byte position POS. See the caveat WARNING for
348 FETCH_MULTIBYTE_CHAR below. */
349
350 #define FETCH_CHAR(pos) \
351 (!NILP (BVAR (current_buffer, enable_multibyte_characters)) \
352 ? FETCH_MULTIBYTE_CHAR ((pos)) \
353 : FETCH_BYTE ((pos)))
354
355 /* Return the byte at byte position N. */
356
357 #define FETCH_BYTE(n) *(BYTE_POS_ADDR ((n)))
358
359 /* Return character at byte position POS. If the current buffer is unibyte
360 and the character is not ASCII, make the returning character
361 multibyte. */
362
363 #define FETCH_CHAR_AS_MULTIBYTE(pos) \
364 (!NILP (BVAR (current_buffer, enable_multibyte_characters)) \
365 ? FETCH_MULTIBYTE_CHAR ((pos)) \
366 : UNIBYTE_TO_CHAR (FETCH_BYTE ((pos))))
367
368 \f
369 /* Macros for accessing a character or byte,
370 or converting between byte positions and addresses,
371 in a specified buffer. */
372
373 /* Return the address of character at byte position POS in buffer BUF.
374 Note that both arguments can be computed more than once. */
375
376 #define BUF_BYTE_ADDRESS(buf, pos) \
377 ((buf)->text->beg + (pos) - BEG_BYTE \
378 + ((pos) >= (buf)->text->gpt_byte ? (buf)->text->gap_size : 0))
379
380 /* Return the address of character at char position POS in buffer BUF.
381 Note that both arguments can be computed more than once. */
382
383 #define BUF_CHAR_ADDRESS(buf, pos) \
384 ((buf)->text->beg + buf_charpos_to_bytepos ((buf), (pos)) - BEG_BYTE \
385 + ((pos) >= (buf)->text->gpt ? (buf)->text->gap_size : 0))
386
387 /* Convert PTR, the address of a char in buffer BUF,
388 into a character position. */
389
390 #define BUF_PTR_BYTE_POS(buf, ptr) \
391 ((ptr) - (buf)->text->beg \
392 - (ptr - (buf)->text->beg <= BUF_GPT_BYTE (buf) - BEG_BYTE \
393 ? 0 : BUF_GAP_SIZE ((buf))) \
394 + BEG_BYTE)
395
396 /* Return the character at byte position POS in buffer BUF. */
397
398 #define BUF_FETCH_CHAR(buf, pos) \
399 (!NILP (buf->enable_multibyte_characters) \
400 ? BUF_FETCH_MULTIBYTE_CHAR ((buf), (pos)) \
401 : BUF_FETCH_BYTE ((buf), (pos)))
402
403 /* Return the byte at byte position N in buffer BUF. */
404
405 #define BUF_FETCH_BYTE(buf, n) \
406 *(BUF_BYTE_ADDRESS ((buf), (n)))
407 \f
408 /* Define the actual buffer data structures. */
409
410 /* This data structure describes the actual text contents of a buffer.
411 It is shared between indirect buffers and their base buffer. */
412
413 struct buffer_text
414 {
415 /* Actual address of buffer contents. If REL_ALLOC is defined,
416 this address might change when blocks are relocated which can
417 e.g. happen when malloc is called. So, don't pass a pointer
418 into a buffer's text to functions that malloc. */
419 unsigned char *beg;
420
421 ptrdiff_t gpt; /* Char pos of gap in buffer. */
422 ptrdiff_t z; /* Char pos of end of buffer. */
423 ptrdiff_t gpt_byte; /* Byte pos of gap in buffer. */
424 ptrdiff_t z_byte; /* Byte pos of end of buffer. */
425 ptrdiff_t gap_size; /* Size of buffer's gap. */
426 EMACS_INT modiff; /* This counts buffer-modification events
427 for this buffer. It is incremented for
428 each such event, and never otherwise
429 changed. */
430 EMACS_INT chars_modiff; /* This is modified with character change
431 events for this buffer. It is set to
432 modiff for each such event, and never
433 otherwise changed. */
434 EMACS_INT save_modiff; /* Previous value of modiff, as of last
435 time buffer visited or saved a file. */
436
437 EMACS_INT overlay_modiff; /* Counts modifications to overlays. */
438
439 /* Minimum value of GPT - BEG since last redisplay that finished. */
440 ptrdiff_t beg_unchanged;
441
442 /* Minimum value of Z - GPT since last redisplay that finished. */
443 ptrdiff_t end_unchanged;
444
445 /* MODIFF as of last redisplay that finished; if it matches MODIFF,
446 beg_unchanged and end_unchanged contain no useful information. */
447 EMACS_INT unchanged_modified;
448
449 /* BUF_OVERLAY_MODIFF of current buffer, as of last redisplay that
450 finished; if it matches BUF_OVERLAY_MODIFF, beg_unchanged and
451 end_unchanged contain no useful information. */
452 EMACS_INT overlay_unchanged_modified;
453
454 /* Properties of this buffer's text. */
455 INTERVAL intervals;
456
457 /* The markers that refer to this buffer.
458 This is actually a single marker ---
459 successive elements in its marker `chain'
460 are the other markers referring to this buffer.
461 This is a singly linked unordered list, which means that it's
462 very cheap to add a marker to the list and it's also very cheap
463 to move a marker within a buffer. */
464 struct Lisp_Marker *markers;
465
466 /* Usually 0. Temporarily set to 1 in decode_coding_gap to
467 prevent Fgarbage_collect from shrinking the gap and losing
468 not-yet-decoded bytes. */
469 int inhibit_shrinking;
470 };
471
472 /* Lisp fields in struct buffer are hidden from most code and accessed
473 via the BVAR macro, below. Only select pieces of code, like the GC,
474 are allowed to use BUFFER_INTERNAL_FIELD. */
475 #define BUFFER_INTERNAL_FIELD(field) field ## _
476
477 /* Most code should use this macro to access Lisp fields in struct
478 buffer. */
479 #define BVAR(buf, field) ((buf)->BUFFER_INTERNAL_FIELD (field))
480
481 /* This is the structure that the buffer Lisp object points to. */
482
483 struct buffer
484 {
485 /* HEADER.NEXT is the next buffer, in chain of all buffers, including killed
486 buffers. This chain, starting from all_buffers, is used only for garbage
487 collection, in order to collect killed buffers properly. Note that large
488 vectors and large pseudo-vector objects are all on another chain starting
489 from large_vectors. */
490 struct vectorlike_header header;
491
492 /* The name of this buffer. */
493 Lisp_Object BUFFER_INTERNAL_FIELD (name);
494
495 /* The name of the file visited in this buffer, or nil. */
496 Lisp_Object BUFFER_INTERNAL_FIELD (filename);
497
498 /* Directory for expanding relative file names. */
499 Lisp_Object BUFFER_INTERNAL_FIELD (directory);
500
501 /* True if this buffer has been backed up (if you write to the visited
502 file and it hasn't been backed up, then a backup will be made). */
503 Lisp_Object BUFFER_INTERNAL_FIELD (backed_up);
504
505 /* Length of file when last read or saved.
506 -1 means auto saving turned off because buffer shrank a lot.
507 -2 means don't turn off auto saving if buffer shrinks.
508 (That value is used with buffer-swap-text.)
509 This is not in the struct buffer_text
510 because it's not used in indirect buffers at all. */
511 Lisp_Object BUFFER_INTERNAL_FIELD (save_length);
512
513 /* File name used for auto-saving this buffer.
514 This is not in the struct buffer_text
515 because it's not used in indirect buffers at all. */
516 Lisp_Object BUFFER_INTERNAL_FIELD (auto_save_file_name);
517
518 /* Non-nil if buffer read-only. */
519 Lisp_Object BUFFER_INTERNAL_FIELD (read_only);
520
521 /* "The mark". This is a marker which may
522 point into this buffer or may point nowhere. */
523 Lisp_Object BUFFER_INTERNAL_FIELD (mark);
524
525 /* Alist of elements (SYMBOL . VALUE-IN-THIS-BUFFER) for all
526 per-buffer variables of this buffer. For locally unbound
527 symbols, just the symbol appears as the element. */
528 Lisp_Object BUFFER_INTERNAL_FIELD (local_var_alist);
529
530 /* Symbol naming major mode (e.g., lisp-mode). */
531 Lisp_Object BUFFER_INTERNAL_FIELD (major_mode);
532
533 /* Pretty name of major mode (e.g., "Lisp"). */
534 Lisp_Object BUFFER_INTERNAL_FIELD (mode_name);
535
536 /* Mode line element that controls format of mode line. */
537 Lisp_Object BUFFER_INTERNAL_FIELD (mode_line_format);
538
539 /* Analogous to mode_line_format for the line displayed at the top
540 of windows. Nil means don't display that line. */
541 Lisp_Object BUFFER_INTERNAL_FIELD (header_line_format);
542
543 /* Keys that are bound local to this buffer. */
544 Lisp_Object BUFFER_INTERNAL_FIELD (keymap);
545
546 /* This buffer's local abbrev table. */
547 Lisp_Object BUFFER_INTERNAL_FIELD (abbrev_table);
548
549 /* This buffer's syntax table. */
550 Lisp_Object BUFFER_INTERNAL_FIELD (syntax_table);
551
552 /* This buffer's category table. */
553 Lisp_Object BUFFER_INTERNAL_FIELD (category_table);
554
555 /* Values of several buffer-local variables. */
556 /* tab-width is buffer-local so that redisplay can find it
557 in buffers that are not current. */
558 Lisp_Object BUFFER_INTERNAL_FIELD (case_fold_search);
559 Lisp_Object BUFFER_INTERNAL_FIELD (tab_width);
560 Lisp_Object BUFFER_INTERNAL_FIELD (fill_column);
561 Lisp_Object BUFFER_INTERNAL_FIELD (left_margin);
562
563 /* Function to call when insert space past fill column. */
564 Lisp_Object BUFFER_INTERNAL_FIELD (auto_fill_function);
565
566 /* Case table for case-conversion in this buffer.
567 This char-table maps each char into its lower-case version. */
568 Lisp_Object BUFFER_INTERNAL_FIELD (downcase_table);
569
570 /* Char-table mapping each char to its upper-case version. */
571 Lisp_Object BUFFER_INTERNAL_FIELD (upcase_table);
572
573 /* Char-table for conversion for case-folding search. */
574 Lisp_Object BUFFER_INTERNAL_FIELD (case_canon_table);
575
576 /* Char-table of equivalences for case-folding search. */
577 Lisp_Object BUFFER_INTERNAL_FIELD (case_eqv_table);
578
579 /* Non-nil means do not display continuation lines. */
580 Lisp_Object BUFFER_INTERNAL_FIELD (truncate_lines);
581
582 /* Non-nil means to use word wrapping when displaying continuation lines. */
583 Lisp_Object BUFFER_INTERNAL_FIELD (word_wrap);
584
585 /* Non-nil means display ctl chars with uparrow. */
586 Lisp_Object BUFFER_INTERNAL_FIELD (ctl_arrow);
587
588 /* Non-nil means reorder bidirectional text for display in the
589 visual order. */
590 Lisp_Object BUFFER_INTERNAL_FIELD (bidi_display_reordering);
591
592 /* If non-nil, specifies which direction of text to force in all the
593 paragraphs of the buffer. Nil means determine paragraph
594 direction dynamically for each paragraph. */
595 Lisp_Object BUFFER_INTERNAL_FIELD (bidi_paragraph_direction);
596
597 /* Non-nil means do selective display;
598 see doc string in syms_of_buffer (buffer.c) for details. */
599 Lisp_Object BUFFER_INTERNAL_FIELD (selective_display);
600
601 /* Non-nil means show ... at end of line followed by invisible lines. */
602 Lisp_Object BUFFER_INTERNAL_FIELD (selective_display_ellipses);
603
604 /* Alist of (FUNCTION . STRING) for each minor mode enabled in buffer. */
605 Lisp_Object BUFFER_INTERNAL_FIELD (minor_modes);
606
607 /* t if "self-insertion" should overwrite; `binary' if it should also
608 overwrite newlines and tabs - for editing executables and the like. */
609 Lisp_Object BUFFER_INTERNAL_FIELD (overwrite_mode);
610
611 /* Non-nil means abbrev mode is on. Expand abbrevs automatically. */
612 Lisp_Object BUFFER_INTERNAL_FIELD (abbrev_mode);
613
614 /* Display table to use for text in this buffer. */
615 Lisp_Object BUFFER_INTERNAL_FIELD (display_table);
616
617 /* t means the mark and region are currently active. */
618 Lisp_Object BUFFER_INTERNAL_FIELD (mark_active);
619
620 /* Non-nil means the buffer contents are regarded as multi-byte
621 form of characters, not a binary code. */
622 Lisp_Object BUFFER_INTERNAL_FIELD (enable_multibyte_characters);
623
624 /* Coding system to be used for encoding the buffer contents on
625 saving. */
626 Lisp_Object BUFFER_INTERNAL_FIELD (buffer_file_coding_system);
627
628 /* List of symbols naming the file format used for visited file. */
629 Lisp_Object BUFFER_INTERNAL_FIELD (file_format);
630
631 /* List of symbols naming the file format used for auto-save file. */
632 Lisp_Object BUFFER_INTERNAL_FIELD (auto_save_file_format);
633
634 /* True if the newline position cache and width run cache are
635 enabled. See search.c and indent.c. */
636 Lisp_Object BUFFER_INTERNAL_FIELD (cache_long_line_scans);
637
638 /* If the width run cache is enabled, this table contains the
639 character widths width_run_cache (see above) assumes. When we
640 do a thorough redisplay, we compare this against the buffer's
641 current display table to see whether the display table has
642 affected the widths of any characters. If it has, we
643 invalidate the width run cache, and re-initialize width_table. */
644 Lisp_Object BUFFER_INTERNAL_FIELD (width_table);
645
646 /* In an indirect buffer, or a buffer that is the base of an
647 indirect buffer, this holds a marker that records
648 PT for this buffer when the buffer is not current. */
649 Lisp_Object BUFFER_INTERNAL_FIELD (pt_marker);
650
651 /* In an indirect buffer, or a buffer that is the base of an
652 indirect buffer, this holds a marker that records
653 BEGV for this buffer when the buffer is not current. */
654 Lisp_Object BUFFER_INTERNAL_FIELD (begv_marker);
655
656 /* In an indirect buffer, or a buffer that is the base of an
657 indirect buffer, this holds a marker that records
658 ZV for this buffer when the buffer is not current. */
659 Lisp_Object BUFFER_INTERNAL_FIELD (zv_marker);
660
661 /* This holds the point value before the last scroll operation.
662 Explicitly setting point sets this to nil. */
663 Lisp_Object BUFFER_INTERNAL_FIELD (point_before_scroll);
664
665 /* Truename of the visited file, or nil. */
666 Lisp_Object BUFFER_INTERNAL_FIELD (file_truename);
667
668 /* Invisibility spec of this buffer.
669 t => any non-nil `invisible' property means invisible.
670 A list => `invisible' property means invisible
671 if it is memq in that list. */
672 Lisp_Object BUFFER_INTERNAL_FIELD (invisibility_spec);
673
674 /* This is the last window that was selected with this buffer in it,
675 or nil if that window no longer displays this buffer. */
676 Lisp_Object BUFFER_INTERNAL_FIELD (last_selected_window);
677
678 /* Incremented each time the buffer is displayed in a window. */
679 Lisp_Object BUFFER_INTERNAL_FIELD (display_count);
680
681 /* Widths of left and right marginal areas for windows displaying
682 this buffer. */
683 Lisp_Object BUFFER_INTERNAL_FIELD (left_margin_cols);
684 Lisp_Object BUFFER_INTERNAL_FIELD (right_margin_cols);
685
686 /* Widths of left and right fringe areas for windows displaying
687 this buffer. */
688 Lisp_Object BUFFER_INTERNAL_FIELD (left_fringe_width);
689 Lisp_Object BUFFER_INTERNAL_FIELD (right_fringe_width);
690
691 /* Non-nil means fringes are drawn outside display margins;
692 othersize draw them between margin areas and text. */
693 Lisp_Object BUFFER_INTERNAL_FIELD (fringes_outside_margins);
694
695 /* Width and type of scroll bar areas for windows displaying
696 this buffer. */
697 Lisp_Object BUFFER_INTERNAL_FIELD (scroll_bar_width);
698 Lisp_Object BUFFER_INTERNAL_FIELD (vertical_scroll_bar_type);
699
700 /* Non-nil means indicate lines not displaying text (in a style
701 like vi). */
702 Lisp_Object BUFFER_INTERNAL_FIELD (indicate_empty_lines);
703
704 /* Non-nil means indicate buffer boundaries and scrolling. */
705 Lisp_Object BUFFER_INTERNAL_FIELD (indicate_buffer_boundaries);
706
707 /* Logical to physical fringe bitmap mappings. */
708 Lisp_Object BUFFER_INTERNAL_FIELD (fringe_indicator_alist);
709
710 /* Logical to physical cursor bitmap mappings. */
711 Lisp_Object BUFFER_INTERNAL_FIELD (fringe_cursor_alist);
712
713 /* Time stamp updated each time this buffer is displayed in a window. */
714 Lisp_Object BUFFER_INTERNAL_FIELD (display_time);
715
716 /* If scrolling the display because point is below the bottom of a
717 window showing this buffer, try to choose a window start so
718 that point ends up this number of lines from the top of the
719 window. Nil means that scrolling method isn't used. */
720 Lisp_Object BUFFER_INTERNAL_FIELD (scroll_up_aggressively);
721
722 /* If scrolling the display because point is above the top of a
723 window showing this buffer, try to choose a window start so
724 that point ends up this number of lines from the bottom of the
725 window. Nil means that scrolling method isn't used. */
726 Lisp_Object BUFFER_INTERNAL_FIELD (scroll_down_aggressively);
727
728 /* Desired cursor type in this buffer. See the doc string of
729 per-buffer variable `cursor-type'. */
730 Lisp_Object BUFFER_INTERNAL_FIELD (cursor_type);
731
732 /* An integer > 0 means put that number of pixels below text lines
733 in the display of this buffer. */
734 Lisp_Object BUFFER_INTERNAL_FIELD (extra_line_spacing);
735
736 /* Cursor type to display in non-selected windows.
737 t means to use hollow box cursor.
738 See `cursor-type' for other values. */
739 Lisp_Object BUFFER_INTERNAL_FIELD (cursor_in_non_selected_windows);
740
741 /* No more Lisp_Object beyond this point. Except undo_list,
742 which is handled specially in Fgarbage_collect . */
743
744 /* This structure holds the coordinates of the buffer contents
745 in ordinary buffers. In indirect buffers, this is not used. */
746 struct buffer_text own_text;
747
748 /* This points to the `struct buffer_text' that used for this buffer.
749 In an ordinary buffer, this is the own_text field above.
750 In an indirect buffer, this is the own_text field of another buffer. */
751 struct buffer_text *text;
752
753 /* Char position of point in buffer. */
754 ptrdiff_t pt;
755
756 /* Byte position of point in buffer. */
757 ptrdiff_t pt_byte;
758
759 /* Char position of beginning of accessible range. */
760 ptrdiff_t begv;
761
762 /* Byte position of beginning of accessible range. */
763 ptrdiff_t begv_byte;
764
765 /* Char position of end of accessible range. */
766 ptrdiff_t zv;
767
768 /* Byte position of end of accessible range. */
769 ptrdiff_t zv_byte;
770
771 /* In an indirect buffer, this points to the base buffer.
772 In an ordinary buffer, it is 0. */
773 struct buffer *base_buffer;
774
775 /* A non-zero value in slot IDX means that per-buffer variable
776 with index IDX has a local value in this buffer. The index IDX
777 for a buffer-local variable is stored in that variable's slot
778 in buffer_local_flags as a Lisp integer. If the index is -1,
779 this means the variable is always local in all buffers. */
780 #define MAX_PER_BUFFER_VARS 50
781 char local_flags[MAX_PER_BUFFER_VARS];
782
783 /* Set to the modtime of the visited file when read or written.
784 EMACS_NSECS (modtime) == NONEXISTENT_MODTIME_NSECS means
785 visited file was nonexistent. EMACS_NSECS (modtime) ==
786 UNKNOWN_MODTIME_NSECS means visited file modtime unknown;
787 in no case complain about any mismatch on next save attempt. */
788 #define NONEXISTENT_MODTIME_NSECS (-1)
789 #define UNKNOWN_MODTIME_NSECS (-2)
790 EMACS_TIME modtime;
791
792 /* Size of the file when modtime was set. This is used to detect the
793 case where the file grew while we were reading it, so the modtime
794 is still the same (since it's rounded up to seconds) but we're actually
795 not up-to-date. -1 means the size is unknown. Only meaningful if
796 modtime is actually set. */
797 off_t modtime_size;
798
799 /* The value of text->modiff at the last auto-save. */
800 EMACS_INT auto_save_modified;
801
802 /* The value of text->modiff at the last display error.
803 Redisplay of this buffer is inhibited until it changes again. */
804 EMACS_INT display_error_modiff;
805
806 /* The time at which we detected a failure to auto-save,
807 Or 0 if we didn't have a failure. */
808 time_t auto_save_failure_time;
809
810 /* Position in buffer at which display started
811 the last time this buffer was displayed. */
812 ptrdiff_t last_window_start;
813
814 /* If the long line scan cache is enabled (i.e. the buffer-local
815 variable cache-long-line-scans is non-nil), newline_cache
816 points to the newline cache, and width_run_cache points to the
817 width run cache.
818
819 The newline cache records which stretches of the buffer are
820 known *not* to contain newlines, so that they can be skipped
821 quickly when we search for newlines.
822
823 The width run cache records which stretches of the buffer are
824 known to contain characters whose widths are all the same. If
825 the width run cache maps a character to a value > 0, that value is
826 the character's width; if it maps a character to zero, we don't
827 know what its width is. This allows compute_motion to process
828 such regions very quickly, using algebra instead of inspecting
829 each character. See also width_table, below. */
830 struct region_cache *newline_cache;
831 struct region_cache *width_run_cache;
832
833 /* Non-zero means don't use redisplay optimizations for
834 displaying this buffer. */
835 unsigned prevent_redisplay_optimizations_p : 1;
836
837 /* Non-zero whenever the narrowing is changed in this buffer. */
838 unsigned clip_changed : 1;
839
840 /* List of overlays that end at or before the current center,
841 in order of end-position. */
842 struct Lisp_Overlay *overlays_before;
843
844 /* List of overlays that end after the current center,
845 in order of start-position. */
846 struct Lisp_Overlay *overlays_after;
847
848 /* Position where the overlay lists are centered. */
849 ptrdiff_t overlay_center;
850
851 /* Changes in the buffer are recorded here for undo, and t means
852 don't record anything. This information belongs to the base
853 buffer of an indirect buffer. But we can't store it in the
854 struct buffer_text because local variables have to be right in
855 the struct buffer. So we copy it around in set_buffer_internal. */
856 Lisp_Object BUFFER_INTERNAL_FIELD (undo_list);
857 };
858
859 \f
860 /* This points to the current buffer. */
861
862 extern struct buffer *current_buffer;
863
864 /* This structure holds the default values of the buffer-local variables
865 that have special slots in each buffer.
866 The default value occupies the same slot in this structure
867 as an individual buffer's value occupies in that buffer.
868 Setting the default value also goes through the alist of buffers
869 and stores into each buffer that does not say it has a local value. */
870
871 extern struct buffer buffer_defaults;
872
873 /* This structure marks which slots in a buffer have corresponding
874 default values in buffer_defaults.
875 Each such slot has a nonzero value in this structure.
876 The value has only one nonzero bit.
877
878 When a buffer has its own local value for a slot,
879 the entry for that slot (found in the same slot in this structure)
880 is turned on in the buffer's local_flags array.
881
882 If a slot in this structure is zero, then even though there may
883 be a Lisp-level local variable for the slot, it has no default value,
884 and the corresponding slot in buffer_defaults is not used. */
885
886
887 extern struct buffer buffer_local_flags;
888
889 /* For each buffer slot, this points to the Lisp symbol name
890 for that slot in the current buffer. It is 0 for slots
891 that don't have such names. */
892
893 extern struct buffer buffer_local_symbols;
894 \f
895 extern void delete_all_overlays (struct buffer *);
896 extern void reset_buffer (struct buffer *);
897 extern void evaporate_overlays (ptrdiff_t);
898 extern ptrdiff_t overlays_at (EMACS_INT pos, int extend, Lisp_Object **vec_ptr,
899 ptrdiff_t *len_ptr, ptrdiff_t *next_ptr,
900 ptrdiff_t *prev_ptr, int change_req);
901 extern ptrdiff_t sort_overlays (Lisp_Object *, ptrdiff_t, struct window *);
902 extern void recenter_overlay_lists (struct buffer *, ptrdiff_t);
903 extern ptrdiff_t overlay_strings (ptrdiff_t, struct window *, unsigned char **);
904 extern void validate_region (Lisp_Object *, Lisp_Object *);
905 extern void set_buffer_internal (struct buffer *);
906 extern void set_buffer_internal_1 (struct buffer *);
907 extern void set_buffer_temp (struct buffer *);
908 extern Lisp_Object buffer_local_value_1 (Lisp_Object, Lisp_Object);
909 extern void record_buffer (Lisp_Object);
910 extern _Noreturn void buffer_slot_type_mismatch (Lisp_Object, int);
911 extern void fix_overlays_before (struct buffer *, ptrdiff_t, ptrdiff_t);
912 extern void mmap_set_vars (int);
913
914 /* Get overlays at POSN into array OVERLAYS with NOVERLAYS elements.
915 If NEXTP is non-NULL, return next overlay there.
916 See overlay_at arg CHANGE_REQ for meaning of CHRQ arg. */
917
918 #define GET_OVERLAYS_AT(posn, overlays, noverlays, nextp, chrq) \
919 do { \
920 ptrdiff_t maxlen = 40; \
921 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \
922 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
923 nextp, NULL, chrq); \
924 if (noverlays > maxlen) \
925 { \
926 maxlen = noverlays; \
927 overlays = (Lisp_Object *) alloca (maxlen * sizeof (Lisp_Object)); \
928 noverlays = overlays_at (posn, 0, &overlays, &maxlen, \
929 nextp, NULL, chrq); \
930 } \
931 } while (0)
932
933 extern Lisp_Object Qbefore_change_functions;
934 extern Lisp_Object Qafter_change_functions;
935 extern Lisp_Object Qfirst_change_hook;
936 \f
937 /* Return character code of multi-byte form at byte position POS. If POS
938 doesn't point the head of valid multi-byte form, only the byte at
939 POS is returned. No range checking.
940
941 WARNING: The character returned by this macro could be "unified"
942 inside STRING_CHAR, if the original character in the buffer belongs
943 to one of the Private Use Areas (PUAs) of codepoints that Emacs
944 uses to support non-unified CJK characters. If that happens,
945 CHAR_BYTES will return a value that is different from the length of
946 the original multibyte sequence stored in the buffer. Therefore,
947 do _not_ use FETCH_MULTIBYTE_CHAR if you need to advance through
948 the buffer to the next character after fetching this one. Instead,
949 use either FETCH_CHAR_ADVANCE or STRING_CHAR_AND_LENGTH. */
950
951 static inline int
952 FETCH_MULTIBYTE_CHAR (ptrdiff_t pos)
953 {
954 unsigned char *p = ((pos >= GPT_BYTE ? GAP_SIZE : 0)
955 + pos + BEG_ADDR - BEG_BYTE);
956 return STRING_CHAR (p);
957 }
958
959 /* Return character code of multi-byte form at byte position POS in BUF.
960 If POS doesn't point the head of valid multi-byte form, only the byte at
961 POS is returned. No range checking. */
962
963 static inline int
964 BUF_FETCH_MULTIBYTE_CHAR (struct buffer *buf, ptrdiff_t pos)
965 {
966 unsigned char *p
967 = ((pos >= BUF_GPT_BYTE (buf) ? BUF_GAP_SIZE (buf) : 0)
968 + pos + BUF_BEG_ADDR (buf) - BEG_BYTE);
969 return STRING_CHAR (p);
970 }
971 \f
972 /* Overlays */
973
974 /* 1 if the OV is an overlay object. */
975
976 #define OVERLAY_VALID(OV) (OVERLAYP (OV))
977
978 /* Return the marker that stands for where OV starts in the buffer. */
979
980 #define OVERLAY_START(OV) (XOVERLAY (OV)->start)
981
982 /* Return the marker that stands for where OV ends in the buffer. */
983
984 #define OVERLAY_END(OV) (XOVERLAY (OV)->end)
985
986 /* Return the plist of overlay OV. */
987
988 #define OVERLAY_PLIST(OV) XOVERLAY ((OV))->plist
989
990 /* Return the actual buffer position for the marker P.
991 We assume you know which buffer it's pointing into. */
992
993 #define OVERLAY_POSITION(P) \
994 (MARKERP (P) ? marker_position (P) : (abort (), 0))
995
996 \f
997 /***********************************************************************
998 Buffer-local Variables
999 ***********************************************************************/
1000
1001 /* Number of per-buffer variables used. */
1002
1003 extern int last_per_buffer_idx;
1004
1005 /* Return the offset in bytes of member VAR of struct buffer
1006 from the start of a buffer structure. */
1007
1008 #define PER_BUFFER_VAR_OFFSET(VAR) \
1009 offsetof (struct buffer, BUFFER_INTERNAL_FIELD (VAR))
1010
1011 /* Used to iterate over normal Lisp_Object fields of struct buffer (all
1012 Lisp_Objects except undo_list). If you add, remove, or reorder
1013 Lisp_Objects in a struct buffer, make sure that this is still correct. */
1014
1015 #define for_each_per_buffer_object_at(offset) \
1016 for (offset = PER_BUFFER_VAR_OFFSET (name); \
1017 offset <= PER_BUFFER_VAR_OFFSET (cursor_in_non_selected_windows); \
1018 offset += sizeof (Lisp_Object))
1019
1020 /* Return the index of buffer-local variable VAR. Each per-buffer
1021 variable has an index > 0 associated with it, except when it always
1022 has buffer-local values, in which case the index is -1. If this is
1023 0, this is a bug and means that the slot of VAR in
1024 buffer_local_flags wasn't initialized. */
1025
1026 #define PER_BUFFER_VAR_IDX(VAR) \
1027 PER_BUFFER_IDX (PER_BUFFER_VAR_OFFSET (VAR))
1028
1029 /* Value is non-zero if the variable with index IDX has a local value
1030 in buffer B. */
1031
1032 #define PER_BUFFER_VALUE_P(B, IDX) \
1033 (((IDX) < 0 || IDX >= last_per_buffer_idx) \
1034 ? (abort (), 0) \
1035 : ((B)->local_flags[IDX] != 0))
1036
1037 /* Set whether per-buffer variable with index IDX has a buffer-local
1038 value in buffer B. VAL zero means it hasn't. */
1039
1040 #define SET_PER_BUFFER_VALUE_P(B, IDX, VAL) \
1041 do { \
1042 if ((IDX) < 0 || (IDX) >= last_per_buffer_idx) \
1043 abort (); \
1044 (B)->local_flags[IDX] = (VAL); \
1045 } while (0)
1046
1047 /* Return the index value of the per-buffer variable at offset OFFSET
1048 in the buffer structure.
1049
1050 If the slot OFFSET has a corresponding default value in
1051 buffer_defaults, the index value is positive and has only one
1052 nonzero bit. When a buffer has its own local value for a slot, the
1053 bit for that slot (found in the same slot in this structure) is
1054 turned on in the buffer's local_flags array.
1055
1056 If the index value is -1, even though there may be a
1057 DEFVAR_PER_BUFFER for the slot, there is no default value for it;
1058 and the corresponding slot in buffer_defaults is not used.
1059
1060 If the index value is -2, then there is no DEFVAR_PER_BUFFER for
1061 the slot, but there is a default value which is copied into each
1062 new buffer.
1063
1064 If a slot in this structure corresponding to a DEFVAR_PER_BUFFER is
1065 zero, that is a bug */
1066
1067
1068 #define PER_BUFFER_IDX(OFFSET) \
1069 XINT (*(Lisp_Object *)((OFFSET) + (char *) &buffer_local_flags))
1070
1071 /* Return the default value of the per-buffer variable at offset
1072 OFFSET in the buffer structure. */
1073
1074 #define PER_BUFFER_DEFAULT(OFFSET) \
1075 (*(Lisp_Object *)((OFFSET) + (char *) &buffer_defaults))
1076
1077 /* Return the buffer-local value of the per-buffer variable at offset
1078 OFFSET in the buffer structure. */
1079
1080 #define PER_BUFFER_VALUE(BUFFER, OFFSET) \
1081 (*(Lisp_Object *)((OFFSET) + (char *) (BUFFER)))
1082 \f
1083 /* Downcase a character C, or make no change if that cannot be done. */
1084 static inline int
1085 downcase (int c)
1086 {
1087 Lisp_Object downcase_table = BVAR (current_buffer, downcase_table);
1088 Lisp_Object down = CHAR_TABLE_REF (downcase_table, c);
1089 return NATNUMP (down) ? XFASTINT (down) : c;
1090 }
1091
1092 /* 1 if C is upper case. */
1093 static inline int uppercasep (int c) { return downcase (c) != c; }
1094
1095 /* Upcase a character C known to be not upper case. */
1096 static inline int
1097 upcase1 (int c)
1098 {
1099 Lisp_Object upcase_table = BVAR (current_buffer, upcase_table);
1100 Lisp_Object up = CHAR_TABLE_REF (upcase_table, c);
1101 return NATNUMP (up) ? XFASTINT (up) : c;
1102 }
1103
1104 /* 1 if C is lower case. */
1105 static inline int lowercasep (int c)
1106 { return !uppercasep (c) && upcase1 (c) != c; }
1107
1108 /* Upcase a character C, or make no change if that cannot be done. */
1109 static inline int upcase (int c) { return uppercasep (c) ? c : upcase1 (c); }