diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-20 19:17:06 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-20 19:17:06 +0200 |
commit | 791eb0c01ad91edc9c91049af6ba435f15dbfa68 (patch) | |
tree | f04e99fea42e5ebef4eb5ad91fe83f3924f9130d /libguile/dynwind.c | |
parent | dd8add2fa026e38aed2abd75ba7a394d9923fc3c (diff) | |
download | guile-791eb0c01ad91edc9c91049af6ba435f15dbfa68.tar.gz |
Remove (C) from copyright statements
As the FSF advises, 'There is no legal significance to using the
three-character sequence “(C)”, but it does no harm.' It does take up
space though! For that reason, we remove it here from our C files.
Diffstat (limited to 'libguile/dynwind.c')
-rw-r--r-- | libguile/dynwind.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/dynwind.c b/libguile/dynwind.c index 1eb5b0dff..576a67dbe 100644 --- a/libguile/dynwind.c +++ b/libguile/dynwind.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995-1996,1998-2001,2003-2004,2006,2008,2010-2012,2018 +/* Copyright 1995-1996,1998-2001,2003-2004,2006,2008,2010-2012,2018 * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or @@ -17,9 +17,6 @@ * 02110-1301 USA */ - - - #ifdef HAVE_CONFIG_H # include <config.h> #endif @@ -37,8 +34,6 @@ #include "dynwind.h" - - SCM scm_dynamic_wind (SCM in_guard, SCM thunk, SCM out_guard) #define FUNC_NAME "dynamic-wind" |