diff options
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 9fea3162810..e9095b3b41b 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -141,12 +141,13 @@ options: | |||
| 141 | db)) | 141 | db)) |
| 142 | (insert "However, your customizations have " | 142 | (insert "However, your customizations have " |
| 143 | (if cb | 143 | (if cb |
| 144 | (format "rebound it to the command ‘%s’" cb) | 144 | (format-message "rebound it to the command ‘%s’" cb) |
| 145 | "unbound it")) | 145 | "unbound it")) |
| 146 | (insert ".") | 146 | (insert ".") |
| 147 | (when mapsym | 147 | (when mapsym |
| 148 | (insert " (For the more advanced user:" | 148 | (insert " (For the more advanced user:" |
| 149 | (format " This binding is in the keymap ‘%s’.)" mapsym))) | 149 | (format-message |
| 150 | " This binding is in the keymap ‘%s’.)" mapsym))) | ||
| 150 | (if (string= where "") | 151 | (if (string= where "") |
| 151 | (unless (keymapp db) | 152 | (unless (keymapp db) |
| 152 | (insert "\n\nYou can use M-x " | 153 | (insert "\n\nYou can use M-x " |
| @@ -158,7 +159,7 @@ options: | |||
| 158 | "" | 159 | "" |
| 159 | "the key") | 160 | "the key") |
| 160 | where | 161 | where |
| 161 | (format " to get the function ‘%s’." db)))) | 162 | (format-message " to get the function ‘%s’." db)))) |
| 162 | (fill-region (point-min) (point))))) | 163 | (fill-region (point-min) (point))))) |
| 163 | (help-print-return-message)))) | 164 | (help-print-return-message)))) |
| 164 | 165 | ||
| @@ -450,7 +451,7 @@ where | |||
| 450 | (lookup-key global-map | 451 | (lookup-key global-map |
| 451 | [menu-bar])))) | 452 | [menu-bar])))) |
| 452 | (stringp cwhere)) | 453 | (stringp cwhere)) |
| 453 | (format "the ‘%s’ menu" cwhere) | 454 | (format-message "the ‘%s’ menu" cwhere) |
| 454 | "the menus")))) | 455 | "the menus")))) |
| 455 | (setq where "")) | 456 | (setq where "")) |
| 456 | (setq remark nil) | 457 | (setq remark nil) |