aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/options.c
diff options
context:
space:
mode:
authorBrooks Moses <brooks.moses@codesourcery.com>2006-11-15 03:52:03 +0000
committerBrooks Moses <brooks@gcc.gnu.org>2006-11-14 19:52:03 -0800
commit1dde868307b85e9be0f93c6e0483b4eb818ef3cf (patch)
tree48bf955c5a301ae0a43b653d35cd27e7c36b6821 /gcc/fortran/options.c
parent4887aa7174404d3fa35104ffba53ad4dc613b474 (diff)
downloadgcc-1dde868307b85e9be0f93c6e0483b4eb818ef3cf.zip
gcc-1dde868307b85e9be0f93c6e0483b4eb818ef3cf.tar.gz
gcc-1dde868307b85e9be0f93c6e0483b4eb818ef3cf.tar.bz2
gfortran.h (GFC_MAX_LINE): Remove constant definition.
* gfortran.h (GFC_MAX_LINE): Remove constant definition. (gfc_option_t): Clarify comments. * options.c: Set default line length limits to actual default values, rather than flag values. * scanner.c: Eliminate checking and handling of the fixed/free_line_length flag values. From-SVN: r118842
Diffstat (limited to 'gcc/fortran/options.c')
-rw-r--r--gcc/fortran/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fortran/options.c b/gcc/fortran/options.c
index 3d870b8..6afcaa4 100644
--- a/gcc/fortran/options.c
+++ b/gcc/fortran/options.c
@@ -46,8 +46,8 @@ gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
gfc_source_file = NULL;
gfc_option.module_dir = NULL;
gfc_option.source_form = FORM_UNKNOWN;
- gfc_option.fixed_line_length = -1;
- gfc_option.free_line_length = -1;
+ gfc_option.fixed_line_length = 72;
+ gfc_option.free_line_length = 132;
gfc_option.max_continue_fixed = 19;
gfc_option.max_continue_free = 39;
gfc_option.max_identifier_length = GFC_MAX_SYMBOL_LEN;