diff options
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/private-options.h | 3 | ||||
-rw-r--r-- | libguile/read.c | 21 |
2 files changed, 23 insertions, 1 deletions
diff --git a/libguile/private-options.h b/libguile/private-options.h index 2c27214ea..c095688c3 100644 --- a/libguile/private-options.h +++ b/libguile/private-options.h @@ -4,7 +4,7 @@ * We put this in a private header, since layout of data structures * is an implementation detail that we want to hide. * - * Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. + * Copyright (C) 2007, 2009, 2010, 2011 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -63,6 +63,7 @@ SCM_INTERNAL scm_t_option scm_read_opts[]; #define SCM_KEYWORD_STYLE scm_read_opts[3].val #define SCM_R6RS_ESCAPES_P scm_read_opts[4].val #define SCM_SQUARE_BRACKETS_P scm_read_opts[5].val +#define SCM_HUNGRY_EOL_ESCAPES_P scm_read_opts[6].val #define SCM_N_READ_OPTIONS 6 diff --git a/libguile/read.c b/libguile/read.c index 54384fa5c..87eecfeb0 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -29,6 +29,7 @@ #include <string.h> #include <unistd.h> #include <unicase.h> +#include <unictype.h> #include "libguile/_scm.h" #include "libguile/bytevectors.h" @@ -75,6 +76,8 @@ scm_t_option scm_read_opts[] = { "Use R6RS variable-length character and string hex escapes."}, { SCM_OPTION_BOOLEAN, "square-brackets", 1, "Treat `[' and `]' as parentheses, for R6RS compatibility."}, + { SCM_OPTION_BOOLEAN, "hungry-eol-escapes", 0, + "In strings, consume leading whitespace after an escaped end-of-line."}, { 0, }, }; @@ -486,6 +489,22 @@ scm_read_sexp (scm_t_wchar chr, SCM port) } \ } while (0) +static void +skip_intraline_whitespace (SCM port) +{ + scm_t_wchar c; + + do + { + c = scm_getc (port); + if (c == EOF) + return; + } + while (c == '\t' || uc_is_general_category (c, UC_SPACE_SEPARATOR)); + + scm_ungetc (c, port); +} + static SCM scm_read_string (int chr, SCM port) #define FUNC_NAME "scm_lreadr" @@ -524,6 +543,8 @@ scm_read_string (int chr, SCM port) case '\\': break; case '\n': + if (SCM_HUNGRY_EOL_ESCAPES_P) + skip_intraline_whitespace (port); continue; case '0': c = '\0'; |