]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix coding style in recently installed changes to print.c
authorPo Lu <luangruo@yahoo.com>
Mon, 8 Aug 2022 12:56:41 +0000 (20:56 +0800)
committerPo Lu <luangruo@yahoo.com>
Mon, 8 Aug 2022 12:56:50 +0000 (20:56 +0800)
* src/print.c (struct print_buffer, struct print_context): Fix
brace position and make comments more like what is in
lisp.h/xterm.c/etc.

src/print.c

index dca5a07d7911144924db3f1edf42f29f19c180f5..73535550bbf3e9352a64a43e9d8525b8a90ecbf9 100644 (file)
@@ -63,11 +63,19 @@ static Lisp_Object being_printed[PRINT_CIRCLE];
 /* Last char printed to stdout by printchar.  */
 static unsigned int printchar_stdout_last;
 
-struct print_buffer {
-  char *buffer;                        /* Allocated buffer.  */
-  ptrdiff_t size;              /* Size of allocated buffer.  */
-  ptrdiff_t pos;               /* Chars stored in buffer.  */
-  ptrdiff_t pos_byte;          /* Bytes stored in buffer.  */
+struct print_buffer
+{
+  /* Allocated buffer.  */
+  char *buffer;
+
+  /* Size of allocated buffer.  */
+  ptrdiff_t size;
+
+  /* Chars stored in buffer.  */
+  ptrdiff_t pos;
+
+  /* Bytes stored in buffer.  */
+  ptrdiff_t pos_byte;
 };
 
 /* When printing into a buffer, first we put the text in this
@@ -114,7 +122,8 @@ print_unwind (Lisp_Object saved_text)
    block of characters.  */
 
 /* State carried between print_prepare and print_finish.  */
-struct print_context {
+struct print_context
+{
   Lisp_Object printcharfun;
   Lisp_Object old_printcharfun;
   ptrdiff_t old_point, start_point;