diff options
| author | Miles Bader | 2007-02-26 23:03:45 +0000 |
|---|---|---|
| committer | Miles Bader | 2007-02-26 23:03:45 +0000 |
| commit | a73d7753f965734247be482efa125da5235996da (patch) | |
| tree | 56af26fb1a12a2c93c146aac923947968c4c9d76 /lisp/emulation | |
| parent | 55a5664de23c07003d4d2584fc065619609500b6 (diff) | |
| parent | f6f3d0b9133d06b29523c7bc744130cddc5c8d6b (diff) | |
| download | emacs-a73d7753f965734247be482efa125da5235996da.tar.gz emacs-a73d7753f965734247be482efa125da5235996da.zip | |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 638-652)
- Update from CVS
- Merge from gnus--rel--5.10
* gnus--rel--5.10 (patch 202)
- Update from CVS
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-177
Diffstat (limited to 'lisp/emulation')
| -rw-r--r-- | lisp/emulation/cua-base.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el index 0463b01b7e3..653597fb83b 100644 --- a/lisp/emulation/cua-base.el +++ b/lisp/emulation/cua-base.el | |||
| @@ -930,6 +930,8 @@ If global mark is active, copy from register or one character." | |||
| 930 | (if arg (goto-char pt)))) | 930 | (if arg (goto-char pt)))) |
| 931 | ((eq this-original-command 'clipboard-yank) | 931 | ((eq this-original-command 'clipboard-yank) |
| 932 | (clipboard-yank)) | 932 | (clipboard-yank)) |
| 933 | ((eq this-original-command 'x-clipboard-yank) | ||
| 934 | (x-clipboard-yank)) | ||
| 933 | (t (yank arg))))))) | 935 | (t (yank arg))))))) |
| 934 | 936 | ||
| 935 | 937 | ||
| @@ -1406,6 +1408,7 @@ If ARG is the atom `-', scroll upward by nearly full screen." | |||
| 1406 | ;; replace region with rectangle or element on kill ring | 1408 | ;; replace region with rectangle or element on kill ring |
| 1407 | (define-key cua-global-keymap [remap yank] 'cua-paste) | 1409 | (define-key cua-global-keymap [remap yank] 'cua-paste) |
| 1408 | (define-key cua-global-keymap [remap clipboard-yank] 'cua-paste) | 1410 | (define-key cua-global-keymap [remap clipboard-yank] 'cua-paste) |
| 1411 | (define-key cua-global-keymap [remap x-clipboard-yank] 'cua-paste) | ||
| 1409 | ;; replace current yank with previous kill ring element | 1412 | ;; replace current yank with previous kill ring element |
| 1410 | (define-key cua-global-keymap [remap yank-pop] 'cua-paste-pop) | 1413 | (define-key cua-global-keymap [remap yank-pop] 'cua-paste-pop) |
| 1411 | ;; set mark | 1414 | ;; set mark |