aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMattias EngdegÄrd2022-08-08 16:26:29 +0200
committerMattias EngdegÄrd2022-08-08 16:26:29 +0200
commit9aae83fe303801d9481b3b106532fd592a4b5290 (patch)
treeba2b3c6d36d0cc23df243241f652f968b8f686cb /src
parent27599d8df838569e223bc8be4fb7c40cd75c1847 (diff)
downloademacs-9aae83fe303801d9481b3b106532fd592a4b5290.tar.gz
emacs-9aae83fe303801d9481b3b106532fd592a4b5290.zip
* src/print.c (struct print_buffer): Revert gratuitous format change.
Diffstat (limited to 'src')
-rw-r--r--src/print.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/print.c b/src/print.c
index 73535550bbf..1c96ec14b86 100644
--- a/src/print.c
+++ b/src/print.c
@@ -65,17 +65,10 @@ static unsigned int printchar_stdout_last;
65 65
66struct print_buffer 66struct print_buffer
67{ 67{
68 /* Allocated buffer. */ 68 char *buffer; /* Allocated buffer. */
69 char *buffer; 69 ptrdiff_t size; /* Size of allocated buffer. */
70 70 ptrdiff_t pos; /* Chars stored in buffer. */
71 /* Size of allocated buffer. */ 71 ptrdiff_t pos_byte; /* Bytes stored in buffer. */
72 ptrdiff_t size;
73
74 /* Chars stored in buffer. */
75 ptrdiff_t pos;
76
77 /* Bytes stored in buffer. */
78 ptrdiff_t pos_byte;
79}; 72};
80 73
81/* When printing into a buffer, first we put the text in this 74/* When printing into a buffer, first we put the text in this