diff options
| author | Glenn Morris | 2013-05-28 19:48:16 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-05-28 19:48:16 -0700 |
| commit | 8b3942003d0435747e6a5f10a403d185883698c4 (patch) | |
| tree | 570f35eb883f7f5951ffcdd1adae110e5707be03 /lisp | |
| parent | 3694d13f709e0c3f82b2fdbba33982d188c92aad (diff) | |
| download | emacs-8b3942003d0435747e6a5f10a403d185883698c4.tar.gz emacs-8b3942003d0435747e6a5f10a403d185883698c4.zip | |
Silence cua-mode compilation
* emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
* emulation/cua-rect.el: Also load cua-base at run time.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/emulation/cua-gmrk.el | 6 | ||||
| -rw-r--r-- | lisp/emulation/cua-rect.el | 3 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7d4e2dc1dfc..eed02c441f2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2013-05-29 Glenn Morris <rgm@gnu.org> | 1 | 2013-05-29 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time. | ||
| 4 | * emulation/cua-rect.el: Also load cua-base at run time. | ||
| 5 | |||
| 3 | * progmodes/cperl-mode.el (imenu-choose-buffer-index) | 6 | * progmodes/cperl-mode.el (imenu-choose-buffer-index) |
| 4 | (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare. | 7 | (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare. |
| 5 | (cperl-imenu-on-info): Require imenu. | 8 | (cperl-imenu-on-info): Require imenu. |
diff --git a/lisp/emulation/cua-gmrk.el b/lisp/emulation/cua-gmrk.el index d2901bb966c..78665624946 100644 --- a/lisp/emulation/cua-gmrk.el +++ b/lisp/emulation/cua-gmrk.el | |||
| @@ -25,10 +25,8 @@ | |||
| 25 | 25 | ||
| 26 | ;;; Code: | 26 | ;;; Code: |
| 27 | 27 | ||
| 28 | (eval-when-compile | 28 | (require 'cua-base) |
| 29 | (require 'cua-base) | 29 | (require 'cua-rect) |
| 30 | (require 'cua-rect) | ||
| 31 | ) | ||
| 32 | 30 | ||
| 33 | ;;; Global Marker | 31 | ;;; Global Marker |
| 34 | 32 | ||
diff --git a/lisp/emulation/cua-rect.el b/lisp/emulation/cua-rect.el index 220469b1ed9..16d109c6360 100644 --- a/lisp/emulation/cua-rect.el +++ b/lisp/emulation/cua-rect.el | |||
| @@ -31,8 +31,7 @@ | |||
| 31 | 31 | ||
| 32 | ;;; Code: | 32 | ;;; Code: |
| 33 | 33 | ||
| 34 | (eval-when-compile | 34 | (require 'cua-base) |
| 35 | (require 'cua-base)) | ||
| 36 | 35 | ||
| 37 | ;;; Rectangle support | 36 | ;;; Rectangle support |
| 38 | 37 | ||