aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools/include/yeccpre.hrl
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2010-02-12 18:38:32 +0100
committerBjörn Gustavsson <[email protected]>2010-02-16 13:24:55 +0100
commit152088ba9594105ddee758021e4f5428a5e710cc (patch)
tree1b8a4f55f69b1e09a8906d56626b99fb06325c00 /lib/parsetools/include/yeccpre.hrl
parentb573c21e29d3763c6950f93308cf695ac3eab9ef (diff)
downloadotp-152088ba9594105ddee758021e4f5428a5e710cc.tar.gz
otp-152088ba9594105ddee758021e4f5428a5e710cc.tar.bz2
otp-152088ba9594105ddee758021e4f5428a5e710cc.zip
parsetools: Use %% for comments at the beginning of a line
According to the style guidelines (and the Erlang mode for Emacs), comments at the beginning of a line should start with "%%", not "%".
Diffstat (limited to 'lib/parsetools/include/yeccpre.hrl')
-rw-r--r--lib/parsetools/include/yeccpre.hrl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/parsetools/include/yeccpre.hrl b/lib/parsetools/include/yeccpre.hrl
index bbf6c8a232..252274c553 100644
--- a/lib/parsetools/include/yeccpre.hrl
+++ b/lib/parsetools/include/yeccpre.hrl
@@ -42,8 +42,8 @@ format_error(Message) ->
io_lib:write(Message)
end.
-% To be used in grammar files to throw an error message to the parser
-% toplevel. Doesn't have to be exported!
+%% To be used in grammar files to throw an error message to the parser
+%% toplevel. Doesn't have to be exported!
-compile({nowarn_unused_function,{return_error,2}}).
-spec return_error(integer(), any()) -> no_return().
return_error(Line, Message) ->
@@ -117,7 +117,7 @@ yeccpars1(State1, State, States, Vstack, Token0, [], {no_func, Line}) ->
yeccpars2(State, '$end', [State1 | States], [Token0 | Vstack],
yecc_end(Line), [], {no_func, Line}).
-% For internal use only.
+%% For internal use only.
yecc_end({Line,_Column}) ->
{'$end', Line};
yecc_end(Line) ->