]> git.eshelyaron.com Git - emacs.git/commit
Omit unnecessary \ before paren in C docstrings
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 16 Sep 2015 23:23:55 +0000 (16:23 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 16 Sep 2015 23:26:07 +0000 (16:26 -0700)
commit032ce1c7d1afb23e6b1265d91c5a97e45de071ce
treedab9ca1e540c23aeb15ee9ef8fdc6b78e1929b6d
parent309d39b832ccd72f99cc726090ff03f7e146948d
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 ).
37 files changed:
src/buffer.c
src/bytecode.c
src/callproc.c
src/category.c
src/chartab.c
src/cmds.c
src/coding.c
src/data.c
src/dbusbind.c
src/dispnew.c
src/doc.c
src/editfns.c
src/eval.c
src/fileio.c
src/floatfns.c
src/fns.c
src/font.c
src/frame.c
src/keyboard.c
src/keymap.c
src/lread.c
src/menu.c
src/minibuf.c
src/nsfns.m
src/nsselect.m
src/print.c
src/process.c
src/search.c
src/syntax.c
src/textprop.c
src/w16select.c
src/w32fns.c
src/window.c
src/xdisp.c
src/xfaces.c
src/xfns.c
src/xselect.c