diff options
| author | Juanma Barranquero | 2007-05-16 11:37:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-05-16 11:37:01 +0000 |
| commit | dd6708d5cfa50965f30cb0e8acbf7a1d20680ccd (patch) | |
| tree | b10c845c49765e40490a819cdb97eb52e9da6b79 /lisp/tutorial.el | |
| parent | 39d9e44fa78b0db04b0771aa02302c1d7eeefe67 (diff) | |
| download | emacs-dd6708d5cfa50965f30cb0e8acbf7a1d20680ccd.tar.gz emacs-dd6708d5cfa50965f30cb0e8acbf7a1d20680ccd.zip | |
(get-lang-string, tutorial--find-changed-keys): Fix typos in docstrings.
Diffstat (limited to 'lisp/tutorial.el')
| -rw-r--r-- | lisp/tutorial.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index 8495f1db6d9..4856d178056 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el | |||
| @@ -406,8 +406,8 @@ where | |||
| 406 | WHERE is a text describing the key sequences to which DEF-FUN is | 406 | WHERE is a text describing the key sequences to which DEF-FUN is |
| 407 | bound now (or, if it is remapped, a key sequence | 407 | bound now (or, if it is remapped, a key sequence |
| 408 | for the function it is remapped to) | 408 | for the function it is remapped to) |
| 409 | REMARK is a list with info about rebinding. It has either of these | 409 | REMARK is a list with info about rebinding. It has either of |
| 410 | formats: | 410 | these formats: |
| 411 | 411 | ||
| 412 | \(TEXT cua-mode) | 412 | \(TEXT cua-mode) |
| 413 | \(TEXT current-binding KEY-FUN DEF-FUN KEY WHERE) | 413 | \(TEXT current-binding KEY-FUN DEF-FUN KEY WHERE) |
| @@ -912,14 +912,14 @@ See `get-lang-string' for more information.") | |||
| 912 | 912 | ||
| 913 | (defun get-lang-string (lang stringid &optional no-eng-fallback) | 913 | (defun get-lang-string (lang stringid &optional no-eng-fallback) |
| 914 | "Get a language specific string for Emacs. | 914 | "Get a language specific string for Emacs. |
| 915 | In certain places Emacs can replace a string showed to the user with a language specific string. | 915 | In certain places Emacs can replace a string shown to the user with |
| 916 | This function retrieves such strings. | 916 | a language specific string. This function retrieves such strings. |
| 917 | 917 | ||
| 918 | LANG is the language specification. It should be one of those | 918 | LANG is the language specification. It should be one of those |
| 919 | strings that can be returned by `read-language-name'. STRINGID | 919 | strings that can be returned by `read-language-name'. STRINGID |
| 920 | is a symbol that specifies the string to retrieve. | 920 | is a symbol that specifies the string to retrieve. |
| 921 | 921 | ||
| 922 | If no string is found for STRINGID in the choosen language then | 922 | If no string is found for STRINGID in the chosen language then |
| 923 | the English string is returned unless NO-ENG-FALLBACK is non-nil. | 923 | the English string is returned unless NO-ENG-FALLBACK is non-nil. |
| 924 | 924 | ||
| 925 | See `lang-strings' for more information. | 925 | See `lang-strings' for more information. |