Dmitry Gutov <dgutov@yandex.ru> writes:
+static void
+read_and_insert_process_output (struct Lisp_Process *p, char *buf,
+ ssize_t nread,
+ struct coding_system *process_coding);
The identifier of a function declaration should not be broken after its
type, and its parameter list should not hold argument names, but only
their types.
+static void read_and_insert_process_output (struct Lisp_Process *p, char *buf,
+ ssize_t nread,
+ struct coding_system *process_coding)
The inverse applies here.
+ if (NILP (BVAR (XBUFFER(p->buffer), enable_multibyte_characters))
Space absent after `XBUFFER'.