aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emulation/cua-rect.el11
1 files changed, 6 insertions, 5 deletions
diff --git a/lisp/emulation/cua-rect.el b/lisp/emulation/cua-rect.el
index 5c4bc011464..f6b50336815 100644
--- a/lisp/emulation/cua-rect.el
+++ b/lisp/emulation/cua-rect.el
@@ -33,12 +33,8 @@
33 33
34;;; Code: 34;;; Code:
35 35
36(provide 'cua-rect)
37
38(eval-when-compile 36(eval-when-compile
39 (require 'cua-base) 37 (require 'cua-base))
40 (require 'cua-gmrk)
41)
42 38
43;;; Rectangle support 39;;; Rectangle support
44 40
@@ -1061,6 +1057,9 @@ The text previously in the rectangle is overwritten by the blanks."
1061 ;; (setq cua-save-point (point)) 1057 ;; (setq cua-save-point (point))
1062 )))) 1058 ))))
1063 1059
1060(declare-function cua--cut-rectangle-to-global-mark "cua-gmrk" (as-text))
1061(declare-function cua--copy-rectangle-to-global-mark "cua-gmrk" (as-text))
1062
1064(defun cua-copy-rectangle-as-text (&optional arg delete) 1063(defun cua-copy-rectangle-as-text (&optional arg delete)
1065 "Copy rectangle, but store as normal text." 1064 "Copy rectangle, but store as normal text."
1066 (interactive "P") 1065 (interactive "P")
@@ -1491,5 +1490,7 @@ With prefix arg, indent to that column."
1491 1490
1492 (setq cua--rectangle-initialized t)) 1491 (setq cua--rectangle-initialized t))
1493 1492
1493(provide 'cua-rect)
1494
1494;;; arch-tag: b730df53-17b9-4a89-bd63-4a71ec196731 1495;;; arch-tag: b730df53-17b9-4a89-bd63-4a71ec196731
1495;;; cua-rect.el ends here 1496;;; cua-rect.el ends here