diff options
| author | Glenn Morris | 2014-09-02 21:21:40 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-09-02 21:21:40 -0700 |
| commit | 62fca47221fc9d248511cd94fbcb41ddb46763e6 (patch) | |
| tree | d039e0d0580f884abbfd7515b63ef7bc4aabeaaa /lisp/tutorial.el | |
| parent | e6769f18909edfd1bbf6473a1f754ab29e2fb114 (diff) | |
| parent | af86b05fd4b79c3d1c3b71c6193c4295a1265594 (diff) | |
| download | emacs-62fca47221fc9d248511cd94fbcb41ddb46763e6.tar.gz emacs-62fca47221fc9d248511cd94fbcb41ddb46763e6.zip | |
Merge from emacs-24; up to 2014-07-04T02:28:54Z!dmantipov@yandex.ru
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index f6d4cb053ec..fcb840fcfed 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -209,10 +209,10 @@ LEFT and RIGHT are the elements to compare." | |||
| 209 | (symbol-name cx))))))) | 209 | (symbol-name cx))))))) |
| 210 | 210 | ||
| 211 | (defconst tutorial--default-keys | 211 | (defconst tutorial--default-keys |
| 212 | ;; On window system, `suspend-emacs' is replaced in the default | 212 | ;; On window system, `suspend-emacs' is replaced in the default keymap. |
| 213 | ;; keymap | ||
| 214 | (let* ((suspend-emacs 'suspend-frame) | 213 | (let* ((suspend-emacs 'suspend-frame) |
| 215 | (default-keys | 214 | (default-keys |
| 215 | ;; The first few are not mentioned but are basic: | ||
| 216 | `((ESC-prefix [27]) | 216 | `((ESC-prefix [27]) |
| 217 | (Control-X-prefix [?\C-x]) | 217 | (Control-X-prefix [?\C-x]) |
| 218 | (mode-specific-command-prefix [?\C-c]) | 218 | (mode-specific-command-prefix [?\C-c]) |
| @@ -552,7 +552,7 @@ with some explanatory links." | |||
| 552 | ;; binding because the Hebrew tutorial uses directional | 552 | ;; binding because the Hebrew tutorial uses directional |
| 553 | ;; controls and Hebrew character maqaf, the Hebrew hyphen, | 553 | ;; controls and Hebrew character maqaf, the Hebrew hyphen, |
| 554 | ;; immediately before the binding string. | 554 | ;; immediately before the binding string. |
| 555 | (concat "\\([[:space:]]\\|[[:punct:]]\\)\\(" | 555 | (concat "\\(?:[[:space:]]\\|[[:punct:]]\\)\\(" |
| 556 | (mapconcat (lambda (kdf) (regexp-quote | 556 | (mapconcat (lambda (kdf) (regexp-quote |
| 557 | (tutorial--key-description | 557 | (tutorial--key-description |
| 558 | (nth 1 kdf)))) | 558 | (nth 1 kdf)))) |