diff options
author | Juri Linkov <juri@jurta.org> | 2007-10-06 22:17:16 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2007-10-06 22:17:16 +0000 |
commit | 7017d784e72db8218aee7272ebf73f0707bc1579 (patch) | |
tree | 0452a165d594a41fb2e7745dc5916437caa8fc2f /lisp/tutorial.el | |
parent | 51ad13dccf07be4304871f61bc4c74d9a00d3abc (diff) | |
download | emacs-7017d784e72db8218aee7272ebf73f0707bc1579.tar.gz |
(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/tutorial.el')
-rw-r--r-- | lisp/tutorial.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 87d5b53049d..26fb0e503f7 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]) |