summaryrefslogtreecommitdiff
path: root/libcons/opts-std-startup.c
diff options
context:
space:
mode:
authorMarcus Brinkmann <marcus@gnu.org>2005-07-11 13:55:14 +0000
committerMarcus Brinkmann <marcus@gnu.org>2005-07-11 13:55:14 +0000
commit2f745c154065dfeae33c864b4e61cfca7a3d4974 (patch)
tree16e9523fb35e586e13ef6786bf14ee6610ddf8b7 /libcons/opts-std-startup.c
parentddeb9733fb4eccc2dc8bd36633db7b34a7ba3627 (diff)
2005-03-05 Samuel Thibault <samuel.thibault@ens-lyon.org>
* priv.h (_cons_file): Prototype moved and renamed to... * cons.h (cons_file): ... this. * init-init.c (cons_init): Updated `_cons_file' reference. * opts-std-startup.c (_cons_file): Renamed into `cons_file'. Updated reference.
Diffstat (limited to 'libcons/opts-std-startup.c')
-rw-r--r--libcons/opts-std-startup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcons/opts-std-startup.c b/libcons/opts-std-startup.c
index 3cf81ae7..23bd9971 100644
--- a/libcons/opts-std-startup.c
+++ b/libcons/opts-std-startup.c
@@ -58,7 +58,7 @@ int _cons_jump_down_on_input = 1;
int _cons_jump_down_on_output;
/* The filename of the console server. */
-char *_cons_file;
+char *cons_file;
/* The type of bell used for the visual bell. */
bell_type_t _cons_visual_bell = BELL_VISUAL;
@@ -206,7 +206,7 @@ parse_startup_opt (int opt, char *arg, struct argp_state *state)
if (state->arg_num > 0)
/* Too many arguments. */
argp_error (state, "Too many non option arguments");
- _cons_file = arg;
+ cons_file = arg;
break;
case ARGP_KEY_NO_ARGS: