Mercurial > emacs
annotate src/doprnt.c @ 15739:822cfec0040c
(vip-ms-style-os-p): Doc fix.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Sat, 20 Jul 1996 17:20:16 +0000 |
| parents | cd283f1eb0cf |
| children | aa25c2ac018b |
| rev | line source |
|---|---|
| 49 | 1 /* Output like sprintf to a buffer of specified size. |
| 2 Also takes args differently: pass one pointer to an array of strings | |
| 3 in addition to the format string which is separate. | |
| 4 Copyright (C) 1985 Free Software Foundation, Inc. | |
| 5 | |
| 6 This file is part of GNU Emacs. | |
| 7 | |
| 8 GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 it under the terms of the GNU General Public License as published by | |
| 12244 | 10 the Free Software Foundation; either version 2, or (at your option) |
| 49 | 11 any later version. |
| 12 | |
| 13 GNU Emacs is distributed in the hope that it will be useful, | |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 GNU General Public License for more details. | |
| 17 | |
| 18 You should have received a copy of the GNU General Public License | |
| 19 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13554
diff
changeset
|
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13554
diff
changeset
|
21 Boston, MA 02111-1307, USA. */ |
| 49 | 22 |
| 23 | |
| 5036 | 24 #include <config.h> |
| 49 | 25 #include <stdio.h> |
| 26 #include <ctype.h> | |
| 13449 | 27 #include "lisp.h" |
| 49 | 28 |
|
11320
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
29 extern long *xmalloc (), *xrealloc (); |
|
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
30 |
| 13449 | 31 static int doprnt1 (); |
| 32 | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
33 /* Generate output from a format-spec FORMAT, |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
34 terminated at position FORMAT_END. |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
35 Output goes in BUFFER, which has room for BUFSIZE chars. |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
36 If the output does not fit, truncate it to fit. |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
37 Returns the number of characters stored into BUFFER. |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
38 ARGS points to the vector of arguments, and NARGS says how many. |
| 13449 | 39 A double counts as two arguments. |
| 40 String arguments are passed as C strings. | |
| 41 Integers are passed as C integers. */ | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
42 |
| 49 | 43 doprnt (buffer, bufsize, format, format_end, nargs, args) |
| 44 char *buffer; | |
| 45 register int bufsize; | |
| 46 char *format; | |
| 47 char *format_end; | |
| 48 int nargs; | |
| 49 char **args; | |
| 50 { | |
| 13449 | 51 return doprnt1 (0, buffer, bufsize, format, format_end, nargs, args); |
| 52 } | |
| 53 | |
| 54 /* Like doprnt except that strings in ARGS are passed | |
| 55 as Lisp_Object. */ | |
| 56 | |
| 57 doprnt_lisp (buffer, bufsize, format, format_end, nargs, args) | |
| 58 char *buffer; | |
| 59 register int bufsize; | |
| 60 char *format; | |
| 61 char *format_end; | |
| 62 int nargs; | |
| 63 char **args; | |
| 64 { | |
| 65 return doprnt1 (1, buffer, bufsize, format, format_end, nargs, args); | |
| 66 } | |
| 67 | |
| 68 static int | |
| 69 doprnt1 (lispstrings, buffer, bufsize, format, format_end, nargs, args) | |
| 70 int lispstrings; | |
| 71 char *buffer; | |
| 72 register int bufsize; | |
| 73 char *format; | |
| 74 char *format_end; | |
| 75 int nargs; | |
| 76 char **args; | |
| 77 { | |
| 49 | 78 int cnt = 0; /* Number of arg to gobble next */ |
| 79 register char *fmt = format; /* Pointer into format string */ | |
| 80 register char *bufptr = buffer; /* Pointer into output buffer.. */ | |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
81 |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
82 /* Use this for sprintf unless we need something really big. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
83 char tembuf[100]; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
84 |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
85 /* Size of sprintf_buffer. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
86 int size_allocated = 100; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
87 |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
88 /* Buffer to use for sprintf. Either tembuf or same as BIG_BUFFER. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
89 char *sprintf_buffer = tembuf; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
90 |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
91 /* Buffer we have got with malloc. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
92 char *big_buffer = 0; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
93 |
| 49 | 94 register int tem; |
| 95 char *string; | |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
96 char fixed_buffer[20]; /* Default buffer for small formatting. */ |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
97 char *fmtcpy; |
| 49 | 98 int minlen; |
| 99 int size; /* Field width factor; e.g., %90d */ | |
|
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
100 char charbuf[2]; /* Used for %c. */ |
| 49 | 101 |
| 102 if (format_end == 0) | |
| 103 format_end = format + strlen (format); | |
| 104 | |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
105 if ((format_end - format + 1) < sizeof (fixed_buffer)) |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
106 fmtcpy = fixed_buffer; |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
107 else |
|
5053
b98e742f0b05
(doprnt): Cast the value alloca returns.
Richard M. Stallman <rms@gnu.org>
parents:
5036
diff
changeset
|
108 fmtcpy = (char *) alloca (format_end - format + 1); |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
109 |
| 49 | 110 bufsize--; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
111 |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
112 /* Loop until end of format string or buffer full. */ |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
113 while (fmt != format_end && bufsize > 0) |
| 49 | 114 { |
| 115 if (*fmt == '%') /* Check for a '%' character */ | |
| 116 { | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
117 int size_bound; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
118 |
| 49 | 119 fmt++; |
| 484 | 120 /* Copy this one %-spec into fmtcpy. */ |
| 49 | 121 string = fmtcpy; |
| 122 *string++ = '%'; | |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
123 while (1) |
| 49 | 124 { |
| 125 *string++ = *fmt; | |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
126 if (! (*fmt >= '0' && *fmt <= '9') |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
127 && *fmt != '-' && *fmt != ' '&& *fmt != '.') |
| 49 | 128 break; |
| 129 fmt++; | |
| 130 } | |
| 131 *string = 0; | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
132 /* Get an idea of how much space we might need. */ |
|
6236
d9f096200099
(doprnt): Do the right thing for negative size spec.
Karl Heuer <kwzh@gnu.org>
parents:
5053
diff
changeset
|
133 size_bound = atoi (&fmtcpy[1]); |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
134 |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
135 /* Avoid pitfall of negative "size" parameter ("%-200d"). */ |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
136 if (size_bound < 0) |
|
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
137 size_bound = -size_bound; |
|
6236
d9f096200099
(doprnt): Do the right thing for negative size spec.
Karl Heuer <kwzh@gnu.org>
parents:
5053
diff
changeset
|
138 size_bound += 50; |
|
4774
8e36034f65e2
(doprnt): Use a fixed buffer to store the format
Brian Fox <bfox@gnu.org>
parents:
2439
diff
changeset
|
139 |
|
14690
cd283f1eb0cf
(doprnt1): Move cast to unsigned inside a shift.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
140 if (size_bound > (((unsigned) 1) << (BITS_PER_INT - 1))) |
|
12959
f83031b644ac
(doprnt): Fix typo in error message.
Richard M. Stallman <rms@gnu.org>
parents:
12830
diff
changeset
|
141 error ("Format padding too large"); |
|
12797
f0724d9d625e
(doprnt): Don't let size_bound be gigantic. Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
142 |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
143 /* Make sure we have that much. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
144 if (size_bound > size_allocated) |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
145 { |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
146 if (big_buffer) |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
147 big_buffer = (char *) xrealloc (big_buffer, size_bound); |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
148 else |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
149 big_buffer = (char *) xmalloc (size_bound); |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
150 sprintf_buffer = big_buffer; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
151 size_allocated = size_bound; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
152 } |
| 49 | 153 minlen = 0; |
| 154 switch (*fmt++) | |
| 155 { | |
| 156 default: | |
| 157 error ("Invalid format operation %%%c", fmt[-1]); | |
| 158 | |
| 159 /* case 'b': */ | |
| 160 case 'd': | |
| 161 case 'o': | |
| 162 case 'x': | |
| 163 if (cnt == nargs) | |
|
12797
f0724d9d625e
(doprnt): Don't let size_bound be gigantic. Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
164 error ("Not enough arguments for format string"); |
|
11700
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
165 if (sizeof (int) == sizeof (EMACS_INT)) |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
166 ; |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
167 else if (sizeof (long) == sizeof (EMACS_INT)) |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
168 /* Insert an `l' the right place. */ |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
169 string[1] = string[0], |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
170 string[0] = string[-1], |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
171 string[-1] = 'l', |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
172 string++; |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
173 else |
|
79358a3240fe
(doprnt): Handle long EMACS_INT in sprintf.
Richard M. Stallman <rms@gnu.org>
parents:
11320
diff
changeset
|
174 abort (); |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
175 sprintf (sprintf_buffer, fmtcpy, args[cnt++]); |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
176 /* Now copy into final output, truncating as nec. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
177 string = sprintf_buffer; |
| 49 | 178 goto doit; |
| 179 | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
180 case 'f': |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
181 case 'e': |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
182 case 'g': |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
183 { |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
184 union { double d; char *half[2]; } u; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
185 if (cnt + 1 == nargs) |
|
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
186 error ("not enough arguments for format string"); |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
187 u.half[0] = args[cnt++]; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
188 u.half[1] = args[cnt++]; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
189 sprintf (sprintf_buffer, fmtcpy, u.d); |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
190 /* Now copy into final output, truncating as nec. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
191 string = sprintf_buffer; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
192 goto doit; |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
193 } |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
194 |
| 49 | 195 case 'S': |
| 196 string[-1] = 's'; | |
| 197 case 's': | |
| 198 if (cnt == nargs) | |
|
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
199 error ("not enough arguments for format string"); |
| 49 | 200 if (fmtcpy[1] != 's') |
| 201 minlen = atoi (&fmtcpy[1]); | |
| 13449 | 202 if (lispstrings) |
| 203 { | |
| 13554 | 204 string = (char *) XSTRING (((Lisp_Object *) args)[cnt])->data; |
| 13449 | 205 tem = XSTRING (((Lisp_Object *) args)[cnt])->size; |
| 206 cnt++; | |
| 207 } | |
| 208 else | |
| 209 { | |
| 210 string = args[cnt++]; | |
| 211 tem = strlen (string); | |
| 212 } | |
| 213 goto doit1; | |
| 214 | |
| 49 | 215 /* Copy string into final output, truncating if no room. */ |
| 216 doit: | |
| 217 tem = strlen (string); | |
|
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
218 doit1: |
| 49 | 219 if (minlen > 0) |
| 220 { | |
| 221 while (minlen > tem && bufsize > 0) | |
| 222 { | |
| 223 *bufptr++ = ' '; | |
| 224 bufsize--; | |
| 225 minlen--; | |
| 226 } | |
| 227 minlen = 0; | |
| 228 } | |
| 229 if (tem > bufsize) | |
| 230 tem = bufsize; | |
| 13449 | 231 bcopy (string, bufptr, tem); |
| 49 | 232 bufptr += tem; |
| 233 bufsize -= tem; | |
| 234 if (minlen < 0) | |
| 235 { | |
| 236 while (minlen < - tem && bufsize > 0) | |
| 237 { | |
| 238 *bufptr++ = ' '; | |
| 239 bufsize--; | |
| 240 minlen++; | |
| 241 } | |
| 242 minlen = 0; | |
| 243 } | |
| 244 continue; | |
| 245 | |
| 246 case 'c': | |
| 247 if (cnt == nargs) | |
|
6715
3864d274a56c
(doprnt): Reword confusing error message.
Karl Heuer <kwzh@gnu.org>
parents:
6236
diff
changeset
|
248 error ("not enough arguments for format string"); |
|
11320
aaf81f284f83
(xmalloc, xrealloc): Declare them here.
Richard M. Stallman <rms@gnu.org>
parents:
8141
diff
changeset
|
249 *charbuf = (EMACS_INT) args[cnt++]; |
|
8141
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
250 string = charbuf; |
|
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
251 tem = 1; |
|
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
252 if (fmtcpy[1] != 'c') |
|
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
253 minlen = atoi (&fmtcpy[1]); |
|
e3859c43c6f4
(doprnt): Handle padding on %c.
Richard M. Stallman <rms@gnu.org>
parents:
6715
diff
changeset
|
254 goto doit1; |
| 49 | 255 |
| 256 case '%': | |
| 257 fmt--; /* Drop thru and this % will be treated as normal */ | |
| 258 } | |
| 259 } | |
| 260 *bufptr++ = *fmt++; /* Just some characters; Copy 'em */ | |
| 261 bufsize--; | |
| 262 }; | |
| 263 | |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
264 /* If we had to malloc something, free it. */ |
|
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
265 if (big_buffer) |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
484
diff
changeset
|
266 xfree (big_buffer); |
|
147
0f50f1badd75
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
116
diff
changeset
|
267 |
| 49 | 268 *bufptr = 0; /* Make sure our string end with a '\0' */ |
| 269 return bufptr - buffer; | |
| 270 } |
