diff options
| author | Jim Blandy <jimb@redhat.com> | 1992-10-31 04:51:36 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1992-10-31 04:51:36 +0000 |
| commit | ea47125f68e167d26f9495db9f609ac130df95e0 (patch) | |
| tree | a08f1668c4da8a18b6b52042f56d5f7a70949e22 | |
| parent | 291026b51f8b99d198ab997e589952c059581d06 (diff) | |
| download | emacs-ea47125f68e167d26f9495db9f609ac130df95e0.tar.gz | |
* buffer.h (Fbuffer_name, Fget_file_buffer): Added external
declarations.
* buffer.h (struct buffer_local_types): This declaration needed an
extern qualifier.
| -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; equal to that integer. When a tag does not match, the function buffer_slot_type_mismatch will signal an error. The value Qnil may always be safely stored in any slot. */ -struct buffer buffer_local_types; +extern struct buffer buffer_local_types; /* Point in the current buffer. */ @@ -380,3 +380,6 @@ whatever you like. */ /* A search buffer, with a fastmap allocated and ready to go. */ extern struct re_pattern_buffer searchbuf; + +extern Lisp_Object Fbuffer_name (); +extern Lisp_Object Fget_file_buffer (); |
