diff options
| author | Paul Eggert | 2016-08-30 19:44:41 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-08-30 19:45:05 -0700 |
| commit | 6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79 (patch) | |
| tree | 976ce8988c55fe60168ff53ca0a9fdaa988a6452 /src | |
| parent | 6cf3ee3d5474a61d6615a6a21d9e7723f7ba9151 (diff) | |
| download | emacs-6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79.tar.gz emacs-6f40b8b23a7c4dcc1ad07e0ad9d32609d21c9f79.zip | |
Minor doc quoting fixes
* doc/misc/htmlfontify.texi (Interactive):
* lisp/htmlfontify.el (htmlfontify-buffer):
Spell out character names, for clarity. The old doc string
generated the *Help* text ‘^L ([FF]) or ¤ (244)’, where ‘[FF]’
stands for a form feed character; this was confusing.
* lisp/electric.el (electric-quote-mode):
* src/doc.c (syms_of_doc):
* src/editfns.c (Fformat_message):
Remove no-longer-necessary ‘\=’s in doc strings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc.c | 2 | ||||
| -rw-r--r-- | src/editfns.c | 4 |
2 files changed, 3 insertions, 3 deletions
| @@ -1014,7 +1014,7 @@ quotes for grave accent and apostrophe. This is done in help output | |||
| 1014 | and in functions like `message' and `format-message'. It is not done | 1014 | and in functions like `message' and `format-message'. It is not done |
| 1015 | in `format'. | 1015 | in `format'. |
| 1016 | 1016 | ||
| 1017 | `curve' means quote with curved single quotes \\=‘like this\\=’. | 1017 | `curve' means quote with curved single quotes ‘like this’. |
| 1018 | `straight' means quote with straight apostrophes \\='like this\\='. | 1018 | `straight' means quote with straight apostrophes \\='like this\\='. |
| 1019 | `grave' means quote with grave accent and apostrophe \\=`like this\\='; | 1019 | `grave' means quote with grave accent and apostrophe \\=`like this\\='; |
| 1020 | i.e., do not alter quote marks. The default value nil acts like | 1020 | i.e., do not alter quote marks. The default value nil acts like |
diff --git a/src/editfns.c b/src/editfns.c index 26a86c7fab1..a46e33bee9e 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3907,8 +3907,8 @@ The first argument is a format control string. | |||
| 3907 | The other arguments are substituted into it to make the result, a string. | 3907 | The other arguments are substituted into it to make the result, a string. |
| 3908 | 3908 | ||
| 3909 | This acts like `format', except it also replaces each left single | 3909 | This acts like `format', except it also replaces each left single |
| 3910 | quotation mark (\\=‘) and grave accent (\\=`) by a left quote, and each | 3910 | quotation mark (‘) and grave accent (\\=`) by a left quote, and each |
| 3911 | right single quotation mark (\\=’) and apostrophe (\\=') by a right quote. | 3911 | right single quotation mark (’) and apostrophe (\\=') by a right quote. |
| 3912 | The left and right quote replacement characters are specified by | 3912 | The left and right quote replacement characters are specified by |
| 3913 | `text-quoting-style'. | 3913 | `text-quoting-style'. |
| 3914 | 3914 | ||