aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPavel Janík2001-11-15 15:50:31 +0000
committerPavel Janík2001-11-15 15:50:31 +0000
commitfb2d3129dce9ac9ea590fc43f11fd8bd9fe608db (patch)
tree4053fa4a563844d23c4ec7686d55a857af8dc006 /lib-src
parent1997815f8b9a29dff56e7479cd90e315c962e6e0 (diff)
downloademacs-fb2d3129dce9ac9ea590fc43f11fd8bd9fe608db.tar.gz
emacs-fb2d3129dce9ac9ea590fc43f11fd8bd9fe608db.zip
Comment fixes.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/make-docfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 4ddfe736325..3d275fdd422 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -79,7 +79,7 @@ FILE *outfile;
79/* Name this program was invoked with. */ 79/* Name this program was invoked with. */
80char *progname; 80char *progname;
81 81
82/* Print error message. `s1' is printf control string, `s2' is arg for it. */ 82/* Print error message. `s1' is printf control string, `s2' is arg for it. */
83 83
84/* VARARGS1 */ 84/* VARARGS1 */
85void 85void
@@ -201,7 +201,7 @@ char buf[128];
201/* Some state during the execution of `read_c_string_or_comment'. */ 201/* Some state during the execution of `read_c_string_or_comment'. */
202struct rcsoc_state 202struct rcsoc_state
203{ 203{
204 /* A count of spaces and newlines that have been read, but not output. */ 204 /* A count of spaces and newlines that have been read, but not output. */
205 unsigned pending_spaces, pending_newlines; 205 unsigned pending_spaces, pending_newlines;
206 206
207 /* Where we're reading from. */ 207 /* Where we're reading from. */
@@ -280,7 +280,7 @@ scan_keyword_or_put_char (ch, state)
280 /* Reset the scanning pointer. */ 280 /* Reset the scanning pointer. */
281 state->cur_keyword_ptr = state->keyword; 281 state->cur_keyword_ptr = state->keyword;
282 282
283 /* Canonicalize whitespace preceding a usage string. */ 283 /* Canonicalize whitespace preceding a usage string. */
284 state->pending_newlines = 2; 284 state->pending_newlines = 2;
285 state->pending_spaces = 0; 285 state->pending_spaces = 0;
286 286
@@ -526,7 +526,7 @@ scan_c_file (filename, mode)
526 return 0; 526 return 0;
527 } 527 }
528 528
529 /* Reset extension to be able to detect duplicate files. */ 529 /* Reset extension to be able to detect duplicate files. */
530 filename[strlen (filename) - 1] = extension; 530 filename[strlen (filename) - 1] = extension;
531 531
532 c = '\n'; 532 c = '\n';