[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/term/mac-win.el
From: |
Andrew Choi |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/term/mac-win.el |
Date: |
Sat, 03 Aug 2002 18:21:10 -0400 |
Index: emacs/lisp/term/mac-win.el
diff -c emacs/lisp/term/mac-win.el:1.11 emacs/lisp/term/mac-win.el:1.12
*** emacs/lisp/term/mac-win.el:1.11 Sun Jun 30 10:41:47 2002
--- emacs/lisp/term/mac-win.el Sat Aug 3 18:21:09 2002
***************
*** 234,239 ****
--- 234,249 ----
;; or bold bitmap versions will not display these variants correctly.
(setq scalable-fonts-allowed t)
+ ;; Make suspend-emacs [C-z] collapse the current frame
+ (substitute-key-definition 'suspend-emacs 'iconify-frame
+ global-map)
+
+ ;; Support mouse-wheel scrolling
+ (autoload 'mwheel-scroll "mwheel")
+ (global-set-key [mouse-wheel] 'mwheel-scroll)
+ (global-set-key [C-mouse-wheel] 'mwheel-scroll)
+ (global-set-key [S-mouse-wheel] 'mwheel-scroll)
+
;; (prefer-coding-system 'mac-roman)
;;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] Changes to emacs/lisp/term/mac-win.el,
Andrew Choi <=