aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJuri Linkov <[email protected]>2007-10-06 22:17:16 +0000
committerJuri Linkov <[email protected]>2007-10-06 22:17:16 +0000
commit7017d784e72db8218aee7272ebf73f0707bc1579 (patch)
tree0452a165d594a41fb2e7745dc5916437caa8fc2f /lisp
parent51ad13dccf07be4304871f61bc4c74d9a00d3abc (diff)
(tutorial--default-keys): Replace fill-paragraph
with fill-paragraph-or-region. Suspend command is now the same `suspend-frame' on window systems and on tty.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/tutorial.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el
index 87d5b53049..26fb0e503f 100644
--- a/lisp/tutorial.el
+++ b/lisp/tutorial.el
@@ -210,9 +210,7 @@ LEFT and RIGHT are the elements to compare."
(defconst tutorial--default-keys
;; On window system, `suspend-emacs' is replaced in the default
;; keymap
- (let* ((suspend-emacs (if window-system
- 'suspend-frame
- 'suspend-emacs))
+ (let* ((suspend-emacs 'suspend-frame)
(default-keys
`((ESC-prefix [27])
(Control-X-prefix [?\C-x])
@@ -293,7 +291,7 @@ LEFT and RIGHT are the elements to compare."
;; * MODE LINE
(describe-mode [?\C-h ?m])
(set-fill-column [?\C-x ?f])
- (fill-paragraph [?\M-q])
+ (fill-paragraph-or-region [?\M-q])
;; * SEARCHING
(isearch-forward [?\C-s])