From 152088ba9594105ddee758021e4f5428a5e710cc Mon Sep 17 00:00:00 2001 From: Kostis Sagonas Date: Fri, 12 Feb 2010 18:38:32 +0100 Subject: 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 "%". --- lib/parsetools/include/yeccpre.hrl | 6 +++--- lib/parsetools/src/yeccparser.erl | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') 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) -> diff --git a/lib/parsetools/src/yeccparser.erl b/lib/parsetools/src/yeccparser.erl index 7cadb0a68d..aaa2772fce 100644 --- a/lib/parsetools/src/yeccparser.erl +++ b/lib/parsetools/src/yeccparser.erl @@ -58,8 +58,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) -> -- cgit v1.2.3