summaryrefslogtreecommitdiff
path: root/src/files.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2003-01-02 20:27:54 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2003-01-02 20:27:54 +0000
commitd891bc49acb52caa165d9204cbb36a3063012b53 (patch)
treef6431d163ce60df98c3cdadce1189ae54a89752b /src/files.c
parent597ba9e33354bd4a812abe212780a37d6bf8269f (diff)
downloadbison-d891bc49acb52caa165d9204cbb36a3063012b53.tar.gz
Comment fixes.
Diffstat (limited to 'src/files.c')
-rw-r--r--src/files.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/files.c b/src/files.c
index ce65c6c1..6c222a87 100644
--- a/src/files.c
+++ b/src/files.c
@@ -1,6 +1,6 @@
/* Open and close files for Bison.
- Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002
+ Copyright (C) 1984, 1986, 1989, 1992, 2000, 2001, 2002, 2003
Free Software Foundation, Inc.
This file is part of Bison, the GNU Compiler Compiler.
@@ -140,7 +140,7 @@ tr (const char *in, char from, char to)
return (temp);
}
-/* Computes extensions from the grammar file extension. */
+/* Compute extensions from the grammar file extension. */
static void
compute_exts_from_gf (const char *ext)
{
@@ -150,7 +150,7 @@ compute_exts_from_gf (const char *ext)
header_extension = tr (header_extension, 'Y', 'H');
}
-/* Computes extensions from the given c source file extension. */
+/* Compute extensions from the given c source file extension. */
static void
compute_exts_from_src (const char *ext)
{
@@ -280,7 +280,7 @@ compute_base_names (void)
+ strlen (TAB_EXT) + 1);
stpcpy (stpcpy (full_base_name, short_base_name), TAB_EXT);
- /* Computes the extensions from the grammar file name. */
+ /* Compute the extensions from the grammar file name. */
filename_split (grammar_file, &base, &tab, &ext);
if (ext && !yacc_flag)
compute_exts_from_gf (ext);