diff options
author | Braun Gábor <braungb88@gmail.com> | 2019-03-22 16:11:44 +0100 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2019-04-19 15:19:45 -0400 |
commit | 598b45adbd8cfc39cf797465ce57a5a50fe730d5 (patch) | |
tree | 9de292a60e1f89cd79f40f4df4450767f450dc0d /lisp/emulation | |
parent | 95bd56df883478bc16e25d7fc5e5d25a56278b7c (diff) | |
download | emacs-598b45adbd8cfc39cf797465ce57a5a50fe730d5.tar.gz emacs-598b45adbd8cfc39cf797465ce57a5a50fe730d5.tar.bz2 emacs-598b45adbd8cfc39cf797465ce57a5a50fe730d5.zip |
Autoload cua-toggle-rectangle-mark (Bug#34947)
* lisp/emulation/cua-base.el (cua-toggle-rectangle-mark): Autoload it.
Library cua-base.el binds cua-toggle-rectangle-mark to a key in the
:set function in (defcustom cua-rectangle-mark-key ...), so it should
ensure that the command is defined.
Copyright-paperwork-exempt: yes
Diffstat (limited to 'lisp/emulation')
-rw-r--r-- | lisp/emulation/cua-base.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index e0efd46ea27..4dd292fbdb9 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el @@ -592,6 +592,7 @@ a cons (TYPE . COLOR), then both properties are affected." (autoload 'cua-set-rectangle-mark "cua-rect" "Start rectangle at mouse click position." t nil) +(autoload 'cua-toggle-rectangle-mark "cua-rect" nil t) ;; Stub definitions until it is loaded (defvar cua--rectangle) |