diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-11-11 00:18:53 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2013-11-11 00:18:53 -0500 |
commit | 7818df11b85d4829b61f6d967aa421621985b18a (patch) | |
tree | 2277311a5fa68f21b13c7fa09f035c74e7d11a9c /src/insdel.c | |
parent | 608c2085c4a3c9ae99a8f08d89da72cb080be412 (diff) |
* lisp/bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
* src/keyboard.c (command_loop_1): Use region-extract-function.
* src/insdel.c (Qregion_extract_function): Not static any more (can we
stop pretending that these vars can benefit from being marked static?).
Diffstat (limited to 'src/insdel.c')
-rw-r--r-- | src/insdel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/insdel.c b/src/insdel.c index 4b8ab19fe2..5515b641d6 100644 --- a/src/insdel.c +++ b/src/insdel.c @@ -1778,7 +1778,7 @@ modify_text (ptrdiff_t start, ptrdiff_t end) bset_point_before_scroll (current_buffer, Qnil); } -static Lisp_Object Qregion_extract_function; +Lisp_Object Qregion_extract_function; /* Check that it is okay to modify the buffer between START and END, which are char positions. |