Mercurial > hg > xemacs-beta
comparison src/insdel.h @ 5125:b5df3737028a ben-lisp-object
merge
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Wed, 24 Feb 2010 01:58:04 -0600 |
parents | 304aebb79cd3 |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5124:623d57b7fbe8 | 5125:b5df3737028a |
---|---|
44 Charcount buffer_insert_raw_string_1 (struct buffer *buf, Charbpos pos, | 44 Charcount buffer_insert_raw_string_1 (struct buffer *buf, Charbpos pos, |
45 const Ibyte *nonreloc, | 45 const Ibyte *nonreloc, |
46 Bytecount length, int flags); | 46 Bytecount length, int flags); |
47 Charcount buffer_insert_lisp_string_1 (struct buffer *buf, Charbpos pos, | 47 Charcount buffer_insert_lisp_string_1 (struct buffer *buf, Charbpos pos, |
48 Lisp_Object str, int flags); | 48 Lisp_Object str, int flags); |
49 Charcount buffer_insert_c_string_1 (struct buffer *buf, Charbpos pos, | 49 Charcount buffer_insert_ascstring_1 (struct buffer *buf, Charbpos pos, |
50 const char *s, int flags); | 50 const Ascbyte *s, int flags); |
51 Charcount buffer_insert_emacs_char_1 (struct buffer *buf, Charbpos pos, | 51 Charcount buffer_insert_emacs_char_1 (struct buffer *buf, Charbpos pos, |
52 Ichar ch, int flags); | 52 Ichar ch, int flags); |
53 Charcount buffer_insert_c_char_1 (struct buffer *buf, Charbpos pos, char c, | 53 Charcount buffer_insert_c_char_1 (struct buffer *buf, Charbpos pos, char c, |
54 int flags); | 54 int flags); |
55 Charcount buffer_insert_from_buffer_1 (struct buffer *buf, Charbpos pos, | 55 Charcount buffer_insert_from_buffer_1 (struct buffer *buf, Charbpos pos, |
61 | 61 |
62 #define buffer_insert_string(buf, nonreloc, reloc, offset, length) \ | 62 #define buffer_insert_string(buf, nonreloc, reloc, offset, length) \ |
63 buffer_insert_string_1 (buf, -1, nonreloc, reloc, offset, length, 0) | 63 buffer_insert_string_1 (buf, -1, nonreloc, reloc, offset, length, 0) |
64 #define buffer_insert_raw_string(buf, string, length) \ | 64 #define buffer_insert_raw_string(buf, string, length) \ |
65 buffer_insert_raw_string_1 (buf, -1, string, length, 0) | 65 buffer_insert_raw_string_1 (buf, -1, string, length, 0) |
66 #define buffer_insert_c_string(buf, s) \ | 66 #define buffer_insert_ascstring(buf, s) \ |
67 buffer_insert_c_string_1 (buf, -1, s, 0) | 67 buffer_insert_ascstring_1 (buf, -1, s, 0) |
68 #define buffer_insert_lisp_string(buf, str) \ | 68 #define buffer_insert_lisp_string(buf, str) \ |
69 buffer_insert_lisp_string_1 (buf, -1, str, 0) | 69 buffer_insert_lisp_string_1 (buf, -1, str, 0) |
70 #define buffer_insert_c_char(buf, c) \ | 70 #define buffer_insert_c_char(buf, c) \ |
71 buffer_insert_c_char_1 (buf, -1, c, 0) | 71 buffer_insert_c_char_1 (buf, -1, c, 0) |
72 #define buffer_insert_emacs_char(buf, ch) \ | 72 #define buffer_insert_emacs_char(buf, ch) \ |