diff options
| author | Paul Eggert | 2015-09-16 16:23:55 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-09-16 16:26:07 -0700 |
| commit | 032ce1c7d1afb23e6b1265d91c5a97e45de071ce (patch) | |
| tree | dab9ca1e540c23aeb15ee9ef8fdc6b78e1929b6d /src/category.c | |
| parent | 309d39b832ccd72f99cc726090ff03f7e146948d (diff) | |
| download | emacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.tar.gz emacs-032ce1c7d1afb23e6b1265d91c5a97e45de071ce.zip | |
Omit unnecessary \ before paren in C docstrings
Although \( is needed in docstrings in Elisp code, it is not needed in
docstrings in C code, since C function definitiions do not start with
a parenthesis. The backslashes made the docstrings a bit harder to
read and to format in columns. Also, some C docstrings had ( in
column 1 and this did not appear to be causing any problems. So,
simplify C docstrings by replacing \( with ( and \) with ).
Diffstat (limited to 'src/category.c')
| -rw-r--r-- | src/category.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/category.c b/src/category.c index bb4a75d3a4d..400116f6e03 100644 --- a/src/category.c +++ b/src/category.c | |||
| @@ -464,7 +464,7 @@ Emacs treats a sequence of word constituent characters as a single | |||
| 464 | word (i.e. finds no word boundary between them) only if they belong to | 464 | word (i.e. finds no word boundary between them) only if they belong to |
| 465 | the same script. But, exceptions are allowed in the following cases. | 465 | the same script. But, exceptions are allowed in the following cases. |
| 466 | 466 | ||
| 467 | \(1) The case that characters are in different scripts is controlled | 467 | (1) The case that characters are in different scripts is controlled |
| 468 | by the variable `word-combining-categories'. | 468 | by the variable `word-combining-categories'. |
| 469 | 469 | ||
| 470 | Emacs finds no word boundary between characters of different scripts | 470 | Emacs finds no word boundary between characters of different scripts |
| @@ -478,7 +478,7 @@ For instance, to tell that Han characters followed by Hiragana | |||
| 478 | characters can form a single word, the element `(?C . ?H)' should be | 478 | characters can form a single word, the element `(?C . ?H)' should be |
| 479 | in this list. | 479 | in this list. |
| 480 | 480 | ||
| 481 | \(2) The case that character are in the same script is controlled by | 481 | (2) The case that character are in the same script is controlled by |
| 482 | the variable `word-separating-categories'. | 482 | the variable `word-separating-categories'. |
| 483 | 483 | ||
| 484 | Emacs finds a word boundary between characters of the same script | 484 | Emacs finds a word boundary between characters of the same script |