1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

Undeprecate read syntax for uniform complex vectors

* libguile/read.c (scm_read_sharp): Move the "#c..." case outside of
  #if SCM_ENABLE_DEPRECATED, and to the same section which handles
  "#s...", "#u..." and "#f...".
  Thanks to Andreas Rottmann <a.rottmann@gmx.at> for the bug report.
This commit is contained in:
Mark H Weaver 2011-04-05 19:42:06 -04:00
parent 78d1be4aef
commit df941b5b62

View file

@ -1329,6 +1329,7 @@ scm_read_sharp (scm_t_wchar chr, SCM port)
case 's': case 's':
case 'u': case 'u':
case 'f': case 'f':
case 'c':
/* This one may return either a boolean or an SRFI-4 vector. */ /* This one may return either a boolean or an SRFI-4 vector. */
return (scm_read_srfi4_vector (chr, port)); return (scm_read_srfi4_vector (chr, port));
case 'v': case 'v':
@ -1348,7 +1349,6 @@ scm_read_sharp (scm_t_wchar chr, SCM port)
#if SCM_ENABLE_DEPRECATED #if SCM_ENABLE_DEPRECATED
/* See below for 'i' and 'e'. */ /* See below for 'i' and 'e'. */
case 'a': case 'a':
case 'c':
case 'y': case 'y':
case 'h': case 'h':
case 'l': case 'l':