diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2006-03-24 22:54:41 +0000 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2006-03-24 22:54:41 +0000 | 
| commit | c7abe91f8b134cbd73658e10993d1dffb44d942d (patch) | |
| tree | 98d45116802a5f50bc3e4640fcd0b32499f95c9e /mixgtk | |
| parent | 3010d483748f058024c623fdfea689429e87bf5c (diff) | |
| download | mdk-c7abe91f8b134cbd73658e10993d1dffb44d942d.tar.gz mdk-c7abe91f8b134cbd73658e10993d1dffb44d942d.tar.bz2 | |
CVS $Id$ tags removed.
git-archimport-id: mdk@sv.gnu.org/mdk--devel--1--patch-7
Diffstat (limited to 'mixgtk')
| -rw-r--r-- | mixgtk/Makefile.am | 4 | ||||
| -rw-r--r-- | mixgtk/gmixvm.c | 20 | ||||
| -rw-r--r-- | mixgtk/mixgtk.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_cmd_dispatcher.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_cmd_dispatcher.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_config.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_config.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_device.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_fontsel.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_fontsel.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_gen_handlers.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_gen_handlers.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_input.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_mixal.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_mixal.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_mixvm.c | 2 | ||||
| -rw-r--r-- | mixgtk/mixgtk_mixvm.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_widgets.h | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_wm.c | 4 | ||||
| -rw-r--r-- | mixgtk/mixgtk_wm.h | 4 | 
20 files changed, 27 insertions, 67 deletions
| diff --git a/mixgtk/Makefile.am b/mixgtk/Makefile.am index 60adf8d..4bd8af6 100644 --- a/mixgtk/Makefile.am +++ b/mixgtk/Makefile.am @@ -1,6 +1,6 @@  ## Process this file with automake to produce Makefile.in -# Copyright (C) 2001, 2004 Free Software Foundation, Inc. +# Copyright (C) 2001, 2004, 2006 Free Software Foundation, Inc.  #  # This file is free software; as a special exception the author gives  # unlimited permission to copy and/or distribute it, with or without @@ -10,8 +10,6 @@  # WITHOUT ANY WARRANTY, to the extent permitted by law; without even the  # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# $Id: Makefile.am,v 1.19 2005/09/18 21:49:40 jao Exp $ -  EXTRA_DIST = mixgtk.glade  if MAKE_GUILE diff --git a/mixgtk/gmixvm.c b/mixgtk/gmixvm.c index 150c891..f33b194 100644 --- a/mixgtk/gmixvm.c +++ b/mixgtk/gmixvm.c @@ -1,24 +1,22 @@  /* -*-c-*- -------------- gmixvm.c :   * Main function of the mix gtk front-end   * ------------------------------------------------------------------ - *  $Id: gmixvm.c,v 1.6 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002 Free Software Foundation, Inc. - *   + * Copyright (C) 2001, 2002, 2006 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   * the Free Software Foundation; either version 2 of the License, or   * (at your option) any later version. - *   + *   * This program is distributed in the hope that it will be useful,   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * GNU General Public License for more details. - *   + *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - *   + *   */  #include <stdio.h> @@ -54,7 +52,7 @@ enum {    USAGE_OPT = 'u'  }; -static const char *options_ = "vqhu";  +static const char *options_ = "vqhu";  static struct option long_options_[] =  { @@ -78,7 +76,7 @@ main(int argc, char *argv[])    int c;    const char *prog_name = argv[0]; -       +    setlocale (LC_ALL, "");    bindtextdomain (PACKAGE, LOCALEDIR);    textdomain (PACKAGE); @@ -86,11 +84,11 @@ main(int argc, char *argv[])    while (1)      {        c = getopt_long (argc, argv, options_, long_options_, (int*)0); -      +        /* Detect the end of the options. */        if (c == -1)  	break; -      +        switch (c)  	{       	case VER_OPT: diff --git a/mixgtk/mixgtk.c b/mixgtk/mixgtk.c index eddb528..a538994 100644 --- a/mixgtk/mixgtk.c +++ b/mixgtk/mixgtk.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk.c :   * Main functions of the mix gtk front-end   * ------------------------------------------------------------------ - * $Id: mixgtk.c,v 1.19 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_cmd_dispatcher.c b/mixgtk/mixgtk_cmd_dispatcher.c index dbb2909..1fc6b10 100644 --- a/mixgtk/mixgtk_cmd_dispatcher.c +++ b/mixgtk/mixgtk_cmd_dispatcher.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_cmd_dispatcher.c :   * Implementation of the functions declared in mixgtk_cmd_dispatcher.h   * ------------------------------------------------------------------ - * $Id: mixgtk_cmd_dispatcher.c,v 1.24 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_cmd_dispatcher.h b/mixgtk/mixgtk_cmd_dispatcher.h index 25ca240..3fa4df3 100644 --- a/mixgtk/mixgtk_cmd_dispatcher.h +++ b/mixgtk/mixgtk_cmd_dispatcher.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_cmd_dispatcher.h :   * functions to access the command dispatcher   * ------------------------------------------------------------------ - * $Id: mixgtk_cmd_dispatcher.h,v 1.6 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_config.c b/mixgtk/mixgtk_config.c index 275d182..519e3cb 100644 --- a/mixgtk/mixgtk_config.c +++ b/mixgtk/mixgtk_config.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_config.c :   * Implementation of the functions declared in mixgtk_config.h   * ------------------------------------------------------------------ - *  $Id: mixgtk_config.c,v 1.10 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_config.h b/mixgtk/mixgtk_config.h index 7c3f548..971c862 100644 --- a/mixgtk/mixgtk_config.h +++ b/mixgtk/mixgtk_config.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_config.h :   * Configuration functions declarations.   * ------------------------------------------------------------------ - *  $Id: mixgtk_config.h,v 1.7 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_device.c b/mixgtk/mixgtk_device.c index a27c5a0..52f8fd2 100644 --- a/mixgtk/mixgtk_device.c +++ b/mixgtk/mixgtk_device.c @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_device.c :   * actual types for mixgtk devices   * ------------------------------------------------------------------ - * $Id: mixgtk_device.c,v 1.27 2005/09/29 21:12:07 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2005, 2006 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 diff --git a/mixgtk/mixgtk_fontsel.c b/mixgtk/mixgtk_fontsel.c index e88793b..66380ba 100644 --- a/mixgtk/mixgtk_fontsel.c +++ b/mixgtk/mixgtk_fontsel.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_fontsel.c :   * Implementation of the functions declared in mixgtk_fontsel.h   * ------------------------------------------------------------------ - *  $Id: mixgtk_fontsel.c,v 1.19 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_fontsel.h b/mixgtk/mixgtk_fontsel.h index 2228ed6..1050402 100644 --- a/mixgtk/mixgtk_fontsel.h +++ b/mixgtk/mixgtk_fontsel.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_fontsel.h :   * Functions for handling font selection.   * ------------------------------------------------------------------ - *  $Id: mixgtk_fontsel.h,v 1.8 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_gen_handlers.c b/mixgtk/mixgtk_gen_handlers.c index 151feac..c67eec8 100644 --- a/mixgtk/mixgtk_gen_handlers.c +++ b/mixgtk/mixgtk_gen_handlers.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_gen_handlers.c :   * Implementation of the functions declared in mixgtk_gen_handlers.h   * ------------------------------------------------------------------ - * $Id: mixgtk_gen_handlers.c,v 1.10 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_gen_handlers.h b/mixgtk/mixgtk_gen_handlers.h index c82c195..20482e1 100644 --- a/mixgtk/mixgtk_gen_handlers.h +++ b/mixgtk/mixgtk_gen_handlers.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_gen_handlers.h :   * general signal handlers declarations   * ------------------------------------------------------------------ - *  $Id: mixgtk_gen_handlers.h,v 1.7 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_input.c b/mixgtk/mixgtk_input.c index 238fadd..17c5c39 100644 --- a/mixgtk/mixgtk_input.c +++ b/mixgtk/mixgtk_input.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_input.c :   * Implementation of the functions declared in mixgtk_input.h   * ------------------------------------------------------------------ - * $Id: mixgtk_input.c,v 1.7 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_mixal.c b/mixgtk/mixgtk_mixal.c index 50d09a7..84664b9 100644 --- a/mixgtk/mixgtk_mixal.c +++ b/mixgtk/mixgtk_mixal.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_mixal.c :   * Implementation of the functions declared in mixgtk_mixal.h   * ------------------------------------------------------------------ - * $Id: mixgtk_mixal.c,v 1.22 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_mixal.h b/mixgtk/mixgtk_mixal.h index 1afe9a0..d54a54f 100644 --- a/mixgtk/mixgtk_mixal.h +++ b/mixgtk/mixgtk_mixal.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_mixal.h :   * Declarations for functions displaying the mixal source file   * ------------------------------------------------------------------ - * $Id: mixgtk_mixal.h,v 1.8 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_mixvm.c b/mixgtk/mixgtk_mixvm.c index 6b4d6b9..6cbdef3 100644 --- a/mixgtk/mixgtk_mixvm.c +++ b/mixgtk/mixgtk_mixvm.c @@ -1,8 +1,6 @@  /* -*-c-*- -------------- mixgtk_mixvm.c :   * Implementation of the functions declared in mixgtk_mixvm.h   * ------------------------------------------------------------------ - * $Id: mixgtk_mixvm.c,v 1.17 2006/03/15 23:31:34 jao Exp $ - * ------------------------------------------------------------------   * Copyright (C) 2001, 2002, 2004, 2006 Free Software Foundation, Inc.   *   * This program is free software; you can redistribute it and/or modify diff --git a/mixgtk/mixgtk_mixvm.h b/mixgtk/mixgtk_mixvm.h index 79a8d72..409fba6 100644 --- a/mixgtk/mixgtk_mixvm.h +++ b/mixgtk/mixgtk_mixvm.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_mixvm.h :   * Functions dealing with the mixvm widgets   * ------------------------------------------------------------------ - * $Id: mixgtk_mixvm.h,v 1.6 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_widgets.h b/mixgtk/mixgtk_widgets.h index 720f962..d34f819 100644 --- a/mixgtk/mixgtk_widgets.h +++ b/mixgtk/mixgtk_widgets.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_widgets.h :   * glade-based factory of mixvm widgets   * ------------------------------------------------------------------ - * $Id: mixgtk_widgets.h,v 1.15 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 diff --git a/mixgtk/mixgtk_wm.c b/mixgtk/mixgtk_wm.c index 7821d0e..6c0a7e5 100644 --- a/mixgtk/mixgtk_wm.c +++ b/mixgtk/mixgtk_wm.c @@ -1,9 +1,7 @@  /* -*-c-*- -------------- mixgtk_wm.c :   * Implementation of the functions declared in mixgtk_wm.h   * ------------------------------------------------------------------ - * $Id: mixgtk_wm.c,v 1.12 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2006 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 diff --git a/mixgtk/mixgtk_wm.h b/mixgtk/mixgtk_wm.h index 878eca6..a2270d6 100644 --- a/mixgtk/mixgtk_wm.h +++ b/mixgtk/mixgtk_wm.h @@ -1,9 +1,7 @@  /* -*-c-*- ---------------- mixgtk_wm.h :   * Functions for window management   * ------------------------------------------------------------------ - * $Id: mixgtk_wm.h,v 1.5 2005/09/20 19:43:14 jao Exp $ - * ------------------------------------------------------------------ - * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2004, 2006 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 | 
