--- guile-1.6.7/libguile/print.c 2003-04-20 20:16:40.000000000 +0200 +++ guile-1.6-1.6.7.mod/libguile/print.c 2005-05-29 18:38:31.000000000 +0200 @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-1999,2000,2001, 2003 Free Software Foundation, Inc. +/* Copyright (C) 1995-1999,2000,2001, 2003, 2005 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 @@ -324,7 +324,9 @@ if (len == 0) scm_lfwrite ("#{}#", 4, port); - else if (str[0] == '#' || str[0] == ':' || str[len-1] == ':') + else if (str[0] == '#' + || (SCM_NFALSEP (SCM_PACK (SCM_KEYWORD_STYLE)) + && (str[0] == ':' || str[len-1] == ':'))) { scm_lfwrite ("#{", 2, port); weird = 1;