diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2004-06-23 10:47:27 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2004-06-23 10:47:27 +0000 |
commit | fecb4dd2456398f40da47ab095f36b2086404f4e (patch) | |
tree | 5a3abe3ab2cb57fc94dd5f8d2d4e10c4da6cb60c /mixguile | |
parent | ffc2f73816d9331db37fbd773b65b7ec17ce4780 (diff) | |
download | mdk-fecb4dd2456398f40da47ab095f36b2086404f4e.tar.gz mdk-fecb4dd2456398f40da47ab095f36b2086404f4e.tar.bz2 |
update to glib 2.x.
Diffstat (limited to 'mixguile')
-rw-r--r-- | mixguile/xmixguile_cmd_dispatcher.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mixguile/xmixguile_cmd_dispatcher.c b/mixguile/xmixguile_cmd_dispatcher.c index 70fa849..272dc5d 100644 --- a/mixguile/xmixguile_cmd_dispatcher.c +++ b/mixguile/xmixguile_cmd_dispatcher.c @@ -1,9 +1,9 @@ /* -*-c-*- -------------- xmixguile_cmd_dispatcher.c : * Implementation of the functions declared in xmixguile_cmd_dispatcher.h * ------------------------------------------------------------------ - * $Id: xmixguile_cmd_dispatcher.c,v 1.11 2003/06/02 23:22:31 jao Exp $ + * $Id: xmixguile_cmd_dispatcher.c,v 1.12 2004/06/23 10:47:27 jao Exp $ * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2003, 2004 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 @@ -286,7 +286,7 @@ static SCM mix_src_name_ (void) { const gchar *path = mix_vm_cmd_dispatcher_get_src_file_path (vm_dispatcher_); - return gh_str02scm (path? g_basename (path) : ""); + return gh_str02scm (path? g_path_get_basename (path) : ""); } static SCM @@ -300,7 +300,7 @@ static SCM mix_prog_name_ (void) { const gchar *path = mix_vm_cmd_dispatcher_get_program_path (vm_dispatcher_); - return gh_str02scm (path? g_basename (path) : ""); + return gh_str02scm (path? g_path_get_basename (path) : ""); } static SCM |