diff options
| author | Paul Eggert | 2015-09-01 06:21:25 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-01 06:23:21 -0700 |
| commit | a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch) | |
| tree | 03058460c897b868eaf281bcf984a3a687667ae3 /src/fns.c | |
| parent | 447e5890a81f098881aecc099852ace466ef5925 (diff) | |
| download | emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.tar.gz emacs-a3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce.zip | |
Docstring fixes re quotes in C code
Fix some docstring quoting problems, mostly by escaping apostrophe.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -347,7 +347,7 @@ This function obeys the conventions for collation order in your | |||
| 347 | locale settings. For example, punctuation and whitespace characters | 347 | locale settings. For example, punctuation and whitespace characters |
| 348 | might be considered less significant for sorting: | 348 | might be considered less significant for sorting: |
| 349 | 349 | ||
| 350 | \(sort '\("11" "12" "1 1" "1 2" "1.1" "1.2") 'string-collate-lessp) | 350 | \(sort '\("11" "12" "1 1" "1 2" "1.1" "1.2") \\='string-collate-lessp) |
| 351 | => \("11" "1 1" "1.1" "12" "1 2" "1.2") | 351 | => \("11" "1 1" "1.1" "12" "1 2" "1.2") |
| 352 | 352 | ||
| 353 | The optional argument LOCALE, a string, overrides the setting of your | 353 | The optional argument LOCALE, a string, overrides the setting of your |
| @@ -1083,7 +1083,7 @@ multibyte character of charset `eight-bit'. | |||
| 1083 | See also `string-to-multibyte'. | 1083 | See also `string-to-multibyte'. |
| 1084 | 1084 | ||
| 1085 | Beware, this often doesn't really do what you think it does. | 1085 | Beware, this often doesn't really do what you think it does. |
| 1086 | It is similar to (decode-coding-string STRING 'utf-8-emacs). | 1086 | It is similar to (decode-coding-string STRING \\='utf-8-emacs). |
| 1087 | If you're not sure, whether to use `string-as-multibyte' or | 1087 | If you're not sure, whether to use `string-as-multibyte' or |
| 1088 | `string-to-multibyte', use `string-to-multibyte'. */) | 1088 | `string-to-multibyte', use `string-to-multibyte'. */) |
| 1089 | (Lisp_Object string) | 1089 | (Lisp_Object string) |