aboutsummaryrefslogtreecommitdiffstats
path: root/src/category.c
diff options
context:
space:
mode:
authorPaul Eggert2015-09-16 16:23:55 -0700
committerPaul Eggert2015-09-16 16:26:07 -0700
commit032ce1c7d1afb23e6b1265d91c5a97e45de071ce (patch)
treedab9ca1e540c23aeb15ee9ef8fdc6b78e1929b6d /src/category.c
parent309d39b832ccd72f99cc726090ff03f7e146948d (diff)
downloademacs-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.c4
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
464word (i.e. finds no word boundary between them) only if they belong to 464word (i.e. finds no word boundary between them) only if they belong to
465the same script. But, exceptions are allowed in the following cases. 465the 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
468by the variable `word-combining-categories'. 468by the variable `word-combining-categories'.
469 469
470Emacs finds no word boundary between characters of different scripts 470Emacs finds no word boundary between characters of different scripts
@@ -478,7 +478,7 @@ For instance, to tell that Han characters followed by Hiragana
478characters can form a single word, the element `(?C . ?H)' should be 478characters can form a single word, the element `(?C . ?H)' should be
479in this list. 479in 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
482the variable `word-separating-categories'. 482the variable `word-separating-categories'.
483 483
484Emacs finds a word boundary between characters of the same script 484Emacs finds a word boundary between characters of the same script