aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorPaul Eggert2015-09-01 06:21:25 -0700
committerPaul Eggert2015-09-01 06:23:21 -0700
commita3c31adea4970b8a7fc7f495e6a6a6d4a93e69ce (patch)
tree03058460c897b868eaf281bcf984a3a687667ae3 /src/fns.c
parent447e5890a81f098881aecc099852ace466ef5925 (diff)
downloademacs-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 26a98abc1a6..aa917ac6ec9 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -347,7 +347,7 @@ This function obeys the conventions for collation order in your
347locale settings. For example, punctuation and whitespace characters 347locale settings. For example, punctuation and whitespace characters
348might be considered less significant for sorting: 348might 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
353The optional argument LOCALE, a string, overrides the setting of your 353The optional argument LOCALE, a string, overrides the setting of your
@@ -1083,7 +1083,7 @@ multibyte character of charset `eight-bit'.
1083See also `string-to-multibyte'. 1083See also `string-to-multibyte'.
1084 1084
1085Beware, this often doesn't really do what you think it does. 1085Beware, this often doesn't really do what you think it does.
1086It is similar to (decode-coding-string STRING 'utf-8-emacs). 1086It is similar to (decode-coding-string STRING \\='utf-8-emacs).
1087If you're not sure, whether to use `string-as-multibyte' or 1087If 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)