Mercurial > emacs
comparison src/buffer.h @ 1502:fa4c1f1c744d
* buffer.h (Fbuffer_name, Fget_file_buffer): Added external
declarations.
* buffer.h (struct buffer_local_types): This declaration needed an
extern qualifier.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Sat, 31 Oct 1992 04:51:36 +0000 |
| parents | fbd402838d8d |
| children | 0e105bd23f44 |
comparison
equal
deleted
inserted
replaced
| 1501:c090f7dcfd27 | 1502:fa4c1f1c744d |
|---|---|
| 316 corresponding buffer slot may contain a value of any type. If a | 316 corresponding buffer slot may contain a value of any type. If a |
| 317 slot contains an integer, then prospective values' tags must be | 317 slot contains an integer, then prospective values' tags must be |
| 318 equal to that integer. When a tag does not match, the function | 318 equal to that integer. When a tag does not match, the function |
| 319 buffer_slot_type_mismatch will signal an error. The value Qnil may | 319 buffer_slot_type_mismatch will signal an error. The value Qnil may |
| 320 always be safely stored in any slot. */ | 320 always be safely stored in any slot. */ |
| 321 struct buffer buffer_local_types; | 321 extern struct buffer buffer_local_types; |
| 322 | 322 |
| 323 /* Point in the current buffer. */ | 323 /* Point in the current buffer. */ |
| 324 | 324 |
| 325 #define point (current_buffer->text.pt + 0) | 325 #define point (current_buffer->text.pt + 0) |
| 326 | 326 |
| 378 #define R_ALLOC_DECLARE(var,data) | 378 #define R_ALLOC_DECLARE(var,data) |
| 379 #endif | 379 #endif |
| 380 | 380 |
| 381 /* A search buffer, with a fastmap allocated and ready to go. */ | 381 /* A search buffer, with a fastmap allocated and ready to go. */ |
| 382 extern struct re_pattern_buffer searchbuf; | 382 extern struct re_pattern_buffer searchbuf; |
| 383 | |
| 384 extern Lisp_Object Fbuffer_name (); | |
| 385 extern Lisp_Object Fget_file_buffer (); |
