comparison lisp/tutorial.el @ 91040:14c4a6aac623

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 866-879) - Merge multi-tty branch - Update from CVS - Merge from emacs--rel--22 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-257
author Miles Bader <miles@gnu.org>
date Thu, 11 Oct 2007 16:14:00 +0000
parents 7ad3fd2afe10
children bb920aebb078
comparison
equal deleted inserted replaced
91039:eefadc1e1d5e 91040:14c4a6aac623
208 (symbol-name cx))))))) 208 (symbol-name cx)))))))
209 209
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 'iconify-or-deiconify-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])
219 (mode-specific-command-prefix [?\C-c]) 217 (mode-specific-command-prefix [?\C-c])
220 (save-buffers-kill-emacs [?\C-x ?\C-c]) 218 (save-buffers-kill-terminal [?\C-x ?\C-c])
221 219
222 ;; * SUMMARY 220 ;; * SUMMARY
223 (scroll-up [?\C-v]) 221 (scroll-up [?\C-v])
224 (scroll-down [?\M-v]) 222 (scroll-down [?\M-v])
225 (recenter [?\C-l]) 223 (recenter [?\C-l])
291 ;; C-x u Undo 289 ;; C-x u Undo
292 290
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])
300 (isearch-backward [?\C-r]) 298 (isearch-backward [?\C-r])
301 299