diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-06-19 12:32:08 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-06-19 12:32:08 +0200 |
commit | 1175f0b6e5ee84cd460248c9a19fae521135d0e3 (patch) | |
tree | 0585d2a25e513092897376dbaffd0c5da52d3030 /gcc/ada/g-cgi.adb | |
parent | 7e9c61e83e48581f9808b3796f474094aa58e3ce (diff) | |
download | gcc-1175f0b6e5ee84cd460248c9a19fae521135d0e3.zip gcc-1175f0b6e5ee84cd460248c9a19fae521135d0e3.tar.gz gcc-1175f0b6e5ee84cd460248c9a19fae521135d0e3.tar.bz2 |
[multiple changes]
2009-06-19 Robert Dewar <dewar@adacore.com>
* g-cgi.adb: Minor reformatting
2009-06-19 Eric Botcazou <ebotcazou@adacore.com>
* s-intman-solaris.adb (Notify_Exception): Do not discriminate on the
signal code for SIGFPE and raise Program_Error for SIGILL.
* s-osinte-solaris.ads: Remove signal code constants for SIGFPE.
2009-06-19 Ed Schonberg <schonberg@adacore.com>
* sem_ch8.adb (Nvis_Messages): Do not list an entity declared in a
generic package if there is a visibility candidate that is declared in
a regular package.
From-SVN: r148691
Diffstat (limited to 'gcc/ada/g-cgi.adb')
-rw-r--r-- | gcc/ada/g-cgi.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/g-cgi.adb b/gcc/ada/g-cgi.adb index b1b6789..dad3738 100644 --- a/gcc/ada/g-cgi.adb +++ b/gcc/ada/g-cgi.adb @@ -123,8 +123,9 @@ package body GNAT.CGI is (Natural'Value ("16#" & S (K + 1 .. K + 2) & '#')); K := K + 3; + -- Plus sign is decoded as a space + elsif S (K) = '+' then - -- + sign is decoded as a space Result (J) := ' '; K := K + 1; |