1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

* 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.
This commit is contained in:
Kai Großjohann 2003-03-09 14:05:25 +00:00
parent f1cb14f8bf
commit 504feff525
3 changed files with 29 additions and 15 deletions

View file

@ -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)