diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-03-06 01:33:49 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-03-06 01:34:28 +0800 |
commit | c6fd77460f5baf88528f5da2ffb99e86a2885ff0 (patch) | |
tree | 377ddb36bc9c907a06d5889123582b2066db42a8 /e-util/e-html-utils.c | |
parent | 29d8b02c557a65aec4b015b274a830b402da2cfd (diff) | |
download | gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.tar.gz gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.tar.zst gsoc2013-evolution-c6fd77460f5baf88528f5da2ffb99e86a2885ff0.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-html-utils.c')
-rw-r--r-- | e-util/e-html-utils.c | 33 |
1 files changed, 22 insertions, 11 deletions
diff --git a/e-util/e-html-utils.c b/e-util/e-html-utils.c index 8a859ac378..087ac7a162 100644 --- a/e-util/e-html-utils.c +++ b/e-util/e-html-utils.c @@ -468,18 +468,29 @@ struct { { "http://www.foo.com, 555-9999", "http://www.foo.com" }, { "|http://www.foo.com|555-9999|", "http://www.foo.com" }, { "foo http://www.foo.com/ bar", "http://www.foo.com/" }, - { "foo http://www.foo.com/index.html bar", "http://www.foo.com/index.html" }, + { "foo http://www.foo.com/index.html bar", + "http://www.foo.com/index.html" }, { "foo http://www.foo.com/q?99 bar", "http://www.foo.com/q?99" }, - { "foo http://www.foo.com/;foo=bar&baz=quux bar", "http://www.foo.com/;foo=bar&baz=quux" }, - { "foo http://www.foo.com/index.html#anchor bar", "http://www.foo.com/index.html#anchor" }, - { "http://www.foo.com/index.html; foo", "http://www.foo.com/index.html" }, - { "http://www.foo.com/index.html: foo", "http://www.foo.com/index.html" }, - { "http://www.foo.com/index.html-- foo", "http://www.foo.com/index.html" }, - { "http://www.foo.com/index.html?", "http://www.foo.com/index.html" }, - { "http://www.foo.com/index.html!", "http://www.foo.com/index.html" }, - { "\"http://www.foo.com/index.html\"", "http://www.foo.com/index.html" }, - { "'http://www.foo.com/index.html'", "http://www.foo.com/index.html" }, - { "http://bob@www.foo.com/bar/baz/", "http://bob@www.foo.com/bar/baz/" }, + { "foo http://www.foo.com/;foo=bar&baz=quux bar", + "http://www.foo.com/;foo=bar&baz=quux" }, + { "foo http://www.foo.com/index.html#anchor bar", + "http://www.foo.com/index.html#anchor" }, + { "http://www.foo.com/index.html; foo", + "http://www.foo.com/index.html" }, + { "http://www.foo.com/index.html: foo", + "http://www.foo.com/index.html" }, + { "http://www.foo.com/index.html-- foo", + "http://www.foo.com/index.html" }, + { "http://www.foo.com/index.html?", + "http://www.foo.com/index.html" }, + { "http://www.foo.com/index.html!", + "http://www.foo.com/index.html" }, + { "\"http://www.foo.com/index.html\"", + "http://www.foo.com/index.html" }, + { "'http://www.foo.com/index.html'", + "http://www.foo.com/index.html" }, + { "http://bob@www.foo.com/bar/baz/", + "http://bob@www.foo.com/bar/baz/" }, { "http no match http", NULL }, { "http: no match http:", NULL }, { "http:// no match http://", NULL }, |