aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.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/keyboard.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/keyboard.c')
-rw-r--r--src/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index ccd340557dd..966af69c97b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -11332,7 +11332,7 @@ See Info node `(elisp)Multiple Terminals'. */);
11332 11332
11333 DEFVAR_BOOL ("cannot-suspend", cannot_suspend, 11333 DEFVAR_BOOL ("cannot-suspend", cannot_suspend,
11334 doc: /* Non-nil means to always spawn a subshell instead of suspending. 11334 doc: /* Non-nil means to always spawn a subshell instead of suspending.
11335\(Even if the operating system has support for stopping a process.\) */); 11335(Even if the operating system has support for stopping a process.) */);
11336 cannot_suspend = false; 11336 cannot_suspend = false;
11337 11337
11338 DEFVAR_BOOL ("menu-prompting", menu_prompting, 11338 DEFVAR_BOOL ("menu-prompting", menu_prompting,
@@ -11538,7 +11538,7 @@ immediately after running `post-command-hook'. */);
11538 DEFVAR_LISP ("input-method-function", Vinput_method_function, 11538 DEFVAR_LISP ("input-method-function", Vinput_method_function,
11539 doc: /* If non-nil, the function that implements the current input method. 11539 doc: /* If non-nil, the function that implements the current input method.
11540It's called with one argument, a printing character that was just read. 11540It's called with one argument, a printing character that was just read.
11541\(That means a character with code 040...0176.) 11541(That means a character with code 040...0176.)
11542Typically this function uses `read-event' to read additional events. 11542Typically this function uses `read-event' to read additional events.
11543When it does so, it should first bind `input-method-function' to nil 11543When it does so, it should first bind `input-method-function' to nil
11544so it will not be called recursively. 11544so it will not be called recursively.