aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorJuri Linkov2007-10-06 22:17:16 +0000
committerJuri Linkov2007-10-06 22:17:16 +0000
commit7017d784e72db8218aee7272ebf73f0707bc1579 (patch)
tree0452a165d594a41fb2e7745dc5916437caa8fc2f /lisp/tutorial.el
parent51ad13dccf07be4304871f61bc4c74d9a00d3abc (diff)
downloademacs-7017d784e72db8218aee7272ebf73f0707bc1579.tar.gz
emacs-7017d784e72db8218aee7272ebf73f0707bc1579.zip
(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.el6
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."
210(defconst tutorial--default-keys 210(defconst tutorial--default-keys
211 ;; On window system, `suspend-emacs' is replaced in the default 211 ;; On window system, `suspend-emacs' is replaced in the default
212 ;; keymap 212 ;; keymap
213 (let* ((suspend-emacs (if window-system 213 (let* ((suspend-emacs 'suspend-frame)
214 'suspend-frame
215 'suspend-emacs))
216 (default-keys 214 (default-keys
217 `((ESC-prefix [27]) 215 `((ESC-prefix [27])
218 (Control-X-prefix [?\C-x]) 216 (Control-X-prefix [?\C-x])
@@ -293,7 +291,7 @@ LEFT and RIGHT are the elements to compare."
293 ;; * MODE LINE 291 ;; * MODE LINE
294 (describe-mode [?\C-h ?m]) 292 (describe-mode [?\C-h ?m])
295 (set-fill-column [?\C-x ?f]) 293 (set-fill-column [?\C-x ?f])
296 (fill-paragraph [?\M-q]) 294 (fill-paragraph-or-region [?\M-q])
297 295
298 ;; * SEARCHING 296 ;; * SEARCHING
299 (isearch-forward [?\C-s]) 297 (isearch-forward [?\C-s])