diff options
author | Štěpán Němec <stepnem@gmail.com> | 2020-04-21 10:51:45 +0200 |
---|---|---|
committer | Štěpán Němec <stepnem@gmail.com> | 2021-04-24 18:26:07 +0200 |
commit | 2c2dfbbbf052353d3d64109e9b7e3d9b247d1e3c (patch) | |
tree | 83770ac6ffa9d9530fc1d10a50e89140962c20be /doc/lispref/nonascii.texi | |
parent | af464e438004698865eafc1b871d4316cfcd8dad (diff) | |
download | emacs-2c2dfbbbf052353d3d64109e9b7e3d9b247d1e3c.tar.gz emacs-2c2dfbbbf052353d3d64109e9b7e3d9b247d1e3c.tar.bz2 emacs-2c2dfbbbf052353d3d64109e9b7e3d9b247d1e3c.zip |
; Fix some typos in doc strings and manuals
Diffstat (limited to 'doc/lispref/nonascii.texi')
-rw-r--r-- | doc/lispref/nonascii.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/lispref/nonascii.texi b/doc/lispref/nonascii.texi index 84f5d2f0819..c22930d624e 100644 --- a/doc/lispref/nonascii.texi +++ b/doc/lispref/nonascii.texi @@ -301,7 +301,7 @@ character, and returns that character. If @var{char} is neither @end defun @defun unibyte-char-to-multibyte char -This convert the unibyte character @var{char} to a multibyte +This converts the unibyte character @var{char} to a multibyte character, assuming @var{char} is either @acronym{ASCII} or raw 8-bit byte. @end defun @@ -676,7 +676,7 @@ This function returns the value of @var{char}'s @var{propname} property. @end group @group (get-char-code-property ?\( 'paired-bracket) - @result{} 41 ;; closing parenthesis + @result{} 41 ; closing parenthesis @end group @group (get-char-code-property ?\) 'bracket-type) @@ -955,13 +955,13 @@ translating the result. @defvar standard-translation-table-for-decode This is the default translation table for decoding. If a coding -systems specifies its own translation tables, the table that is the +system specifies its own translation tables, the table that is the value of this variable, if non-@code{nil}, is applied after them. @end defvar @defvar standard-translation-table-for-encode This is the default translation table for encoding. If a coding -systems specifies its own translation tables, the table that is the +system specifies its own translation tables, the table that is the value of this variable, if non-@code{nil}, is applied after them. @end defvar @@ -1258,7 +1258,7 @@ name or @code{nil}. @defun check-coding-system coding-system This function checks the validity of @var{coding-system}. If that is valid, it returns @var{coding-system}. If @var{coding-system} is -@code{nil}, the function return @code{nil}. For any other values, it +@code{nil}, the function returns @code{nil}. For any other values, it signals an error whose @code{error-symbol} is @code{coding-system-error} (@pxref{Signaling Errors, signal}). @end defun |