diff options
| author | Stefan Monnier | 2013-11-24 13:28:33 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-11-24 13:28:33 -0500 |
| commit | 740bcff0c1de06859c8139dd8e23e82aa28401a0 (patch) | |
| tree | 66c858ec57977e7990229fee72af43a96d5bcbb1 /src/intervals.c | |
| parent | 450533b07a9adf8a1d19d3ce7142f946f04e76ac (diff) | |
| download | emacs-740bcff0c1de06859c8139dd8e23e82aa28401a0.tar.gz emacs-740bcff0c1de06859c8139dd8e23e82aa28401a0.zip | |
Export get_pos_property to Elisp.
* src/editfns.c (Fget_pos_property): Rename from get_pos_property.
(syms_of_editfns): Export it to Elisp.
Diffstat (limited to 'src/intervals.c')
| -rw-r--r-- | src/intervals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intervals.c b/src/intervals.c index 5aa68a359d6..0e3b684f570 100644 --- a/src/intervals.c +++ b/src/intervals.c | |||
| @@ -2232,7 +2232,7 @@ get_local_map (ptrdiff_t position, struct buffer *buffer, Lisp_Object type) | |||
| 2232 | editing a field with a `local-map' property, we want insertion at the end | 2232 | editing a field with a `local-map' property, we want insertion at the end |
| 2233 | to obey the `local-map' property. */ | 2233 | to obey the `local-map' property. */ |
| 2234 | if (NILP (prop)) | 2234 | if (NILP (prop)) |
| 2235 | prop = get_pos_property (lispy_position, type, lispy_buffer); | 2235 | prop = Fget_pos_property (lispy_position, type, lispy_buffer); |
| 2236 | 2236 | ||
| 2237 | SET_BUF_BEGV_BOTH (buffer, old_begv, old_begv_byte); | 2237 | SET_BUF_BEGV_BOTH (buffer, old_begv, old_begv_byte); |
| 2238 | SET_BUF_ZV_BOTH (buffer, old_zv, old_zv_byte); | 2238 | SET_BUF_ZV_BOTH (buffer, old_zv, old_zv_byte); |