summaryrefslogtreecommitdiff
path: root/libguile/deprecation.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-12-06 19:14:50 +0100
committerAndy Wingo <wingo@pobox.com>2011-12-06 19:14:50 +0100
commit04ec290f8b3e6bd6297fb10391ea7e885a55a786 (patch)
treeb36dd4f7dd85dcf30c64900b9972433a54e2b4cd /libguile/deprecation.c
parent8806b4c28a7919b236d10751ebcb15f4a503b08c (diff)
parent679eea4f0ef7720e0ed3c9ba3fddedf35d1501d6 (diff)
downloadguile-04ec290f8b3e6bd6297fb10391ea7e885a55a786.tar.gz
Merge remote-tracking branch 'origin/stable-2.0'
Conflicts: libguile/deprecation.c libguile/load.c libguile/print.c
Diffstat (limited to 'libguile/deprecation.c')
-rw-r--r--libguile/deprecation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/deprecation.c b/libguile/deprecation.c
index 1622406a8..5c1a246c2 100644
--- a/libguile/deprecation.c
+++ b/libguile/deprecation.c
@@ -89,8 +89,8 @@ scm_c_issue_deprecation_warning (const char *msg)
fprintf (stderr, "%s\n", msg);
else
{
- scm_puts_unlocked (msg, scm_current_error_port ());
- scm_newline (scm_current_error_port ());
+ scm_puts_unlocked (msg, scm_current_warning_port ());
+ scm_newline (scm_current_warning_port ());
}
}
}