diff options
author | Glenn Morris <rgm@gnu.org> | 2007-12-04 03:48:27 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2007-12-04 03:48:27 +0000 |
commit | 2c0f856464b453f6f246f10696bb08e29d393483 (patch) | |
tree | ece9e42667c88b8a981a7152127fc8f4fe36794f /lisp/emulation/cua-rect.el | |
parent | 88a25b1883c22350f5a0a8e3c5dd23cbe7fdf7d6 (diff) | |
download | emacs-2c0f856464b453f6f246f10696bb08e29d393483.tar.gz |
(top-level): Move provide to end.
Don't require cua-gmrk when compiling.
(cua--cut-rectangle-to-global-mark)
(cua--copy-rectangle-to-global-mark): Declare as functions.
Diffstat (limited to 'lisp/emulation/cua-rect.el')
-rw-r--r-- | lisp/emulation/cua-rect.el | 11 |
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 @@ ;;; Code: -(provide 'cua-rect) - (eval-when-compile - (require 'cua-base) - (require 'cua-gmrk) -) + (require 'cua-base)) ;;; Rectangle support @@ -1061,6 +1057,9 @@ The text previously in the rectangle is overwritten by the blanks." ;; (setq cua-save-point (point)) )))) +(declare-function cua--cut-rectangle-to-global-mark "cua-gmrk" (as-text)) +(declare-function cua--copy-rectangle-to-global-mark "cua-gmrk" (as-text)) + (defun cua-copy-rectangle-as-text (&optional arg delete) "Copy rectangle, but store as normal text." (interactive "P") @@ -1491,5 +1490,7 @@ With prefix arg, indent to that column." (setq cua--rectangle-initialized t)) +(provide 'cua-rect) + ;;; arch-tag: b730df53-17b9-4a89-bd63-4a71ec196731 ;;; cua-rect.el ends here |