diff options
author | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-03-09 14:05:25 +0000 |
---|---|---|
committer | Kai Großjohann <kgrossjo@eu.uu.net> | 2003-03-09 14:05:25 +0000 |
commit | 504feff52552ef480c3f0a50b9d82570ca753727 (patch) | |
tree | b1e5ba701228cbceda56e203871254b0460d8d75 /lisp/emulation/crisp.el | |
parent | f1cb14f8bfc5ca72c2c0628d065329dffa349c8f (diff) | |
download | emacs-504feff52552ef480c3f0a50b9d82570ca753727.tar.gz |
* man.el (Man-getpage-in-background): Always use `setenv' for
environment variables, instead of modifying process-environment
directly. The previous version let-bound process-environment --
the let-binding is skipped for GROFF_NO_SGR because there is
already a let-binding in effect in some outer scope.
* emulation/crisp.el (top-level): Interoperate with cua.
Diffstat (limited to 'lisp/emulation/crisp.el')
-rw-r--r-- | lisp/emulation/crisp.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el index 8a5410d48a7..055c8e58de0 100644 --- a/lisp/emulation/crisp.el +++ b/lisp/emulation/crisp.el @@ -385,6 +385,12 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise." (setq minor-mode-map-alist (cons (cons 'crisp-mode crisp-mode-map) 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))) + (run-hooks 'crisp-load-hook) (provide 'crisp) |