diff options
| author | Jim Blandy | 1992-10-31 04:51:36 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-10-31 04:51:36 +0000 |
| commit | ea47125f68e167d26f9495db9f609ac130df95e0 (patch) | |
| tree | a08f1668c4da8a18b6b52042f56d5f7a70949e22 /src/buffer.h | |
| parent | 291026b51f8b99d198ab997e589952c059581d06 (diff) | |
| download | emacs-ea47125f68e167d26f9495db9f609ac130df95e0.tar.gz emacs-ea47125f68e167d26f9495db9f609ac130df95e0.zip | |
* buffer.h (Fbuffer_name, Fget_file_buffer): Added external
declarations.
* buffer.h (struct buffer_local_types): This declaration needed an
extern qualifier.
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buffer.h b/src/buffer.h index 8628d815133..ddf903e5469 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -318,7 +318,7 @@ extern struct buffer buffer_local_symbols; | |||
| 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 | ||
| @@ -380,3 +380,6 @@ whatever you like. */ | |||
| 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 (); | ||