diff options
| author | K. Handa <handa@gnu.org> | 2015-09-08 20:43:11 +0900 |
|---|---|---|
| committer | K. Handa <handa@gnu.org> | 2015-09-08 20:43:11 +0900 |
| commit | 94ed5167557112fb00eeca05e62589db744206de (patch) | |
| tree | 80a544f8534802dd61fbd218b97441d3419dbf6b /lisp/tutorial.el | |
| parent | 33f2e0023a5ef03db3e99ade0b93a7a1a913dbe1 (diff) | |
| parent | 10e7f7de910ca816799062f33b830f7598801f0e (diff) | |
| download | emacs-94ed5167557112fb00eeca05e62589db744206de.tar.gz | |
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index e9095b3b41b..f8660f55f65 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -136,18 +136,18 @@ options: (setq mapsym s))))) (insert (format - "The default Emacs binding for the key %s is the command ‘%s’. " + "The default Emacs binding for the key %s is the command `%s'. " (key-description key) db)) (insert "However, your customizations have " (if cb - (format-message "rebound it to the command ‘%s’" cb) + (format-message "rebound it to the command `%s'" cb) "unbound it")) (insert ".") (when mapsym (insert " (For the more advanced user:" (format-message - " This binding is in the keymap ‘%s’.)" mapsym))) + " This binding is in the keymap `%s'.)" mapsym))) (if (string= where "") (unless (keymapp db) (insert "\n\nYou can use M-x " @@ -159,7 +159,7 @@ options: "" "the key") where - (format-message " to get the function ‘%s’." db)))) + (format-message " to get the function `%s'." db)))) (fill-region (point-min) (point))))) (help-print-return-message)))) @@ -451,7 +451,7 @@ where (lookup-key global-map [menu-bar])))) (stringp cwhere)) - (format-message "the ‘%s’ menu" cwhere) + (format-message "the `%s' menu" cwhere) "the menus")))) (setq where "")) (setq remark nil) |
