diff options
author | Kim F. Storm <storm@cua.dk> | 2005-05-19 08:06:59 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-05-19 08:06:59 +0000 |
commit | 34e99b2e36e39fc5199dba83c87e6cfc10cde23c (patch) | |
tree | dfdcbeef85c474d75821fcef9f17fbc8c5d0173c /lisp/emulation/crisp.el | |
parent | 8d9386a1678fdcdf048656d71d58f2228b642b70 (diff) | |
download | emacs-34e99b2e36e39fc5199dba83c87e6cfc10cde23c.tar.gz |
(crisp-home, crisp-end): Put CUA property.
Diffstat (limited to 'lisp/emulation/crisp.el')
-rw-r--r-- | lisp/emulation/crisp.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el index 6f1c663ae47..97706fdfab0 100644 --- a/lisp/emulation/crisp.el +++ b/lisp/emulation/crisp.el @@ -386,10 +386,8 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise." minor-mode-map-alist)))) ;; Interaction with other packages. -(eval-after-load 'cua - '(progn - (add-to-list 'cua--standard-movement-commands 'crisp-home) - (add-to-list 'cua--standard-movement-commands 'crisp-end))) +(put 'crisp-home 'CUA 'move) +(put 'crisp-end 'CUA 'move) (run-hooks 'crisp-load-hook) (provide 'crisp) |