diff options
Diffstat (limited to 'mixutils/mixvm_loop.c')
-rw-r--r-- | mixutils/mixvm_loop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mixutils/mixvm_loop.c b/mixutils/mixvm_loop.c index 309c492..8a571d8 100644 --- a/mixutils/mixvm_loop.c +++ b/mixutils/mixvm_loop.c @@ -1,7 +1,7 @@ /* -*-c-*- -------------- mixvm_loop.c : * Implementation of mix vm command loop. * ------------------------------------------------------------------ - * Copyright (C) 2000 jose antonio ortega ruiz <jaortega@acm.org> + * Copyright (C) 2000, 2001 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -56,9 +56,9 @@ rl_gets () /* The main command loop of the virtual machine */ void -mix_vmloop (const gchar *file) +mix_vmloop (const gchar *file, gboolean use_emacs) { - mixvm_cmd_init ((char *)file); + mixvm_cmd_init ((char *)file, use_emacs); while ( mixvm_cmd_exec (rl_gets ()) ) ; } |