diff options
author | Henrik Nord <[email protected]> | 2011-09-28 15:00:19 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2011-09-28 15:02:54 +0200 |
commit | ae097a5161b79f16f8b9a2d8f73e5e2f1792edec (patch) | |
tree | cbf278b965e5ad7fbe95bea524ea9580c2942684 /lib/edoc/src/edoc_parser.yrl | |
parent | fde38fa8d3120e6aa479f7720654114df9cd4ec8 (diff) | |
parent | df2063c1e436cfb2bb9283df074c4eaa87aeec91 (diff) | |
download | otp-ae097a5161b79f16f8b9a2d8f73e5e2f1792edec.tar.gz otp-ae097a5161b79f16f8b9a2d8f73e5e2f1792edec.tar.bz2 otp-ae097a5161b79f16f8b9a2d8f73e5e2f1792edec.zip |
Merge branch 'rc/edoc-0.7.9' into dev
* rc/edoc-0.7.9:
bumped revision
removed some never-matching clauses reported by dialyzer
Fix macro expansion in comments following Erlang types
URI-escape bytes as two hex digits always (reported by Alfonso De Gregorio)
updated author e-mail
recognize some more URI schemas in wiki text, in particular https
OTP-9590
Diffstat (limited to 'lib/edoc/src/edoc_parser.yrl')
-rw-r--r-- | lib/edoc/src/edoc_parser.yrl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/edoc/src/edoc_parser.yrl b/lib/edoc/src/edoc_parser.yrl index 3ce4cde4fb..4d6428f75b 100644 --- a/lib/edoc/src/edoc_parser.yrl +++ b/lib/edoc/src/edoc_parser.yrl @@ -22,7 +22,7 @@ %% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 %% USA %% -%% Author contact: [email protected] +%% Author contact: [email protected] %% ===================================================================== Nonterminals @@ -255,7 +255,7 @@ throws -> etype where_defs: %% "%% USA" %% "%%" %% "%% @private" -%% "%% @author Richard Carlsson <[email protected]>" +%% "%% @author Richard Carlsson <[email protected]>" %% "%% ====================================================================" %% . @@ -455,8 +455,6 @@ parse_throws(S, L) -> -spec throw_error(term(), erl_scan:line()) -> no_return(). -throw_error({L, M, D}, _L0) -> - throw({error,L,{format_error,M,D}}); throw_error({parse_spec, E}, L) -> throw_error({"specification", E}, L); throw_error({parse_typedef, E}, L) -> @@ -468,7 +466,4 @@ throw_error({parse_throws, E}, L) -> throw_error(parse_param, L) -> throw({error, L, "missing parameter name"}); throw_error({Where, E}, L) when is_list(Where) -> - throw({error,L,{"unknown error parsing ~s: ~P.",[Where,E,15]}}); -throw_error(E, L) -> - %% Just in case. - throw({error,L,{"unknown parse error: ~P.",[E,15]}}). + throw({error,L,{"unknown error parsing ~s: ~P.",[Where,E,15]}}). |