diff options
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]) |