diff options
| author | Paul Eggert | 2014-12-09 16:26:46 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-09 16:27:23 -0800 |
| commit | cc857dd0db0fad257747134bdbd8318a21d12cab (patch) | |
| tree | 28f4f2f61569bce9c3002a1d948edf080dbabe2d /src | |
| parent | c54f8f8aebe27089a1f84d9fc24b37c93762a7e5 (diff) | |
| download | emacs-cc857dd0db0fad257747134bdbd8318a21d12cab.tar.gz emacs-cc857dd0db0fad257747134bdbd8318a21d12cab.zip | |
Fix misspellings like "an unibyte buffer"
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog.10 | 2 | ||||
| -rw-r--r-- | src/alloc.c | 4 | ||||
| -rw-r--r-- | src/indent.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ChangeLog.10 b/src/ChangeLog.10 index 1b77eaf5803..b6646e797e3 100644 --- a/src/ChangeLog.10 +++ b/src/ChangeLog.10 | |||
| @@ -20769,7 +20769,7 @@ | |||
| 20769 | 20769 | ||
| 20770 | * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here. | 20770 | * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here. |
| 20771 | 20771 | ||
| 20772 | * editfns.c (Fformat): Convert an unibyte char argument that is | 20772 | * editfns.c (Fformat): Convert a unibyte char argument that is |
| 20773 | formatted by "%c" to multibyte if the total result must be a | 20773 | formatted by "%c" to multibyte if the total result must be a |
| 20774 | multibyte string. | 20774 | multibyte string. |
| 20775 | 20775 | ||
diff --git a/src/alloc.c b/src/alloc.c index 1019c2af6cc..35a5ee2784f 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2226,7 +2226,7 @@ make_string (const char *contents, ptrdiff_t nbytes) | |||
| 2226 | return val; | 2226 | return val; |
| 2227 | } | 2227 | } |
| 2228 | 2228 | ||
| 2229 | /* Make an unibyte string from LENGTH bytes at CONTENTS. */ | 2229 | /* Make a unibyte string from LENGTH bytes at CONTENTS. */ |
| 2230 | 2230 | ||
| 2231 | Lisp_Object | 2231 | Lisp_Object |
| 2232 | make_unibyte_string (const char *contents, ptrdiff_t length) | 2232 | make_unibyte_string (const char *contents, ptrdiff_t length) |
| @@ -2295,7 +2295,7 @@ make_specified_string (const char *contents, | |||
| 2295 | } | 2295 | } |
| 2296 | 2296 | ||
| 2297 | 2297 | ||
| 2298 | /* Return an unibyte Lisp_String set up to hold LENGTH characters | 2298 | /* Return a unibyte Lisp_String set up to hold LENGTH characters |
| 2299 | occupying LENGTH bytes. */ | 2299 | occupying LENGTH bytes. */ |
| 2300 | 2300 | ||
| 2301 | Lisp_Object | 2301 | Lisp_Object |
diff --git a/src/indent.c b/src/indent.c index e6b267a3891..04f5d6cfa4a 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -439,7 +439,7 @@ current_column (void) | |||
| 439 | /* With a display table entry, C is displayed as is, and | 439 | /* With a display table entry, C is displayed as is, and |
| 440 | not displayed as \NNN or as ^N. If C is a single-byte | 440 | not displayed as \NNN or as ^N. If C is a single-byte |
| 441 | character, it takes one column. If C is multi-byte in | 441 | character, it takes one column. If C is multi-byte in |
| 442 | an unibyte buffer, it's translated to unibyte, so it | 442 | a unibyte buffer, it's translated to unibyte, so it |
| 443 | also takes one column. */ | 443 | also takes one column. */ |
| 444 | ++col; | 444 | ++col; |
| 445 | else | 445 | else |