aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/tutorial.el
diff options
context:
space:
mode:
authorJuanma Barranquero2007-05-16 11:37:01 +0000
committerJuanma Barranquero2007-05-16 11:37:01 +0000
commitdd6708d5cfa50965f30cb0e8acbf7a1d20680ccd (patch)
treeb10c845c49765e40490a819cdb97eb52e9da6b79 /lisp/tutorial.el
parent39d9e44fa78b0db04b0771aa02302c1d7eeefe67 (diff)
downloademacs-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.el12
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.
915In certain places Emacs can replace a string showed to the user with a language specific string. 915In certain places Emacs can replace a string shown to the user with
916This function retrieves such strings. 916a language specific string. This function retrieves such strings.
917 917
918LANG is the language specification. It should be one of those 918LANG is the language specification. It should be one of those
919strings that can be returned by `read-language-name'. STRINGID 919strings that can be returned by `read-language-name'. STRINGID
920is a symbol that specifies the string to retrieve. 920is a symbol that specifies the string to retrieve.
921 921
922If no string is found for STRINGID in the choosen language then 922If no string is found for STRINGID in the chosen language then
923the English string is returned unless NO-ENG-FALLBACK is non-nil. 923the English string is returned unless NO-ENG-FALLBACK is non-nil.
924 924
925See `lang-strings' for more information. 925See `lang-strings' for more information.