aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2008-03-17 20:21:12 +0000
committerStefan Monnier2008-03-17 20:21:12 +0000
commitf9f3238f99fe397dbac66faef02c31f41c3cc320 (patch)
treeb65df6b77029daf087fea711b7c1a7c6a1becec8 /src
parent800a97b891f3b5c344fba2a6a76649fb51f488fa (diff)
downloademacs-f9f3238f99fe397dbac66faef02c31f41c3cc320.tar.gz
emacs-f9f3238f99fe397dbac66faef02c31f41c3cc320.zip
(Fbuffer_list): Declare (for use in callint.c).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog10
-rw-r--r--src/buffer.h1
2 files changed, 7 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8d3397c7834..ceaa1e81c0c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
4
12008-03-17 Andreas Schwab <schwab@suse.de> 52008-03-17 Andreas Schwab <schwab@suse.de>
2 6
3 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes 7 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
@@ -28,10 +32,8 @@
28 32
29 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY) 33 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
30 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros. 34 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
31 (coding_alloc_by_making_gap): Fix the way to preserve data in the 35 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
32 gap. 36 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
33 (alloc_destination): Fix the 2nd arg to
34 coding_alloc_by_making_gap.
35 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of 37 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
36 CHAR_STRING_ADVANCE. 38 CHAR_STRING_ADVANCE.
37 (produce_chars): Fix for the case that the source and the 39 (produce_chars): Fix for the case that the source and the
diff --git a/src/buffer.h b/src/buffer.h
index c5544e7314a..5c2dd5bc143 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -868,6 +868,7 @@ extern void mmap_set_vars P_ ((int));
868 } \ 868 } \
869 } while (0) 869 } while (0)
870 870
871EXFUN (Fbuffer_list, 1);
871EXFUN (Fbuffer_live_p, 1); 872EXFUN (Fbuffer_live_p, 1);
872EXFUN (Fbuffer_name, 1); 873EXFUN (Fbuffer_name, 1);
873EXFUN (Fget_file_buffer, 1); 874EXFUN (Fget_file_buffer, 1);