瀏覽代碼

Whitespace cleanups

pull/3/head
Tuncer Ayaz 14 年之前
父節點
當前提交
c63002bef8
共有 4 個文件被更改,包括 24 次插入21 次删除
  1. +12
    -10
      priv/templates/simplefsm.erl
  2. +1
    -1
      priv/templates/simplemod.erl
  3. +2
    -2
      priv/templates/simplenode.erl.script
  4. +9
    -8
      priv/templates/simplesrv.erl

+ 12
- 10
priv/templates/simplefsm.erl 查看文件

@ -12,42 +12,44 @@
%% gen_fsm Function Exports %% gen_fsm Function Exports
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
-export([init/1, state_name/2, state_name/3, handle_event/3, handle_sync_event/4, handle_info/3, terminate/3, code_change/4]).
-export([init/1, state_name/2, state_name/3, handle_event/3,
handle_sync_event/4, handle_info/3, terminate/3,
code_change/4]).
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% API Function Definitions %% API Function Definitions
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
start_link() -> start_link() ->
gen_fsm:start_link({local, ?SERVER}, ?MODULE, [], []).
gen_fsm:start_link({local, ?SERVER}, ?MODULE, [], []).
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% gen_fsm Function Definitions %% gen_fsm Function Definitions
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
init(_Args) -> init(_Args) ->
{ok, initial_state_name, initial_state}.
{ok, initial_state_name, initial_state}.
state_name(_Event, State) -> state_name(_Event, State) ->
{next_state, state_name, State}.
{next_state, state_name, State}.
state_name(_Event, _From, State) -> state_name(_Event, _From, State) ->
{reply, ok, state_name, State}.
{reply, ok, state_name, State}.
handle_event(_Event, StateName, State) -> handle_event(_Event, StateName, State) ->
{next_state, StateName, State}.
{next_state, StateName, State}.
handle_sync_event(_Event, _From, StateName, State) -> handle_sync_event(_Event, _From, StateName, State) ->
{reply, ok, StateName, State}.
{reply, ok, StateName, State}.
handle_info(_Info, StateName, State) -> handle_info(_Info, StateName, State) ->
{next_state, StateName, State}.
{next_state, StateName, State}.
terminate(_Reason, _StateName, _State) -> terminate(_Reason, _StateName, _State) ->
ok.
ok.
code_change(_OldVsn, StateName, State, _Extra) -> code_change(_OldVsn, StateName, State, _Extra) ->
{ok, StateName, State}.
{ok, StateName, State}.
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% Internal Function Definitions %% Internal Function Definitions

+ 1
- 1
priv/templates/simplemod.erl 查看文件

@ -7,4 +7,4 @@
-endif. -endif.
my_func() -> my_func() ->
ok.
ok.

+ 2
- 2
priv/templates/simplenode.erl.script 查看文件

@ -4,7 +4,7 @@
## as escript depends on erl and in turn, erl depends on having access to a ## as escript depends on erl and in turn, erl depends on having access to a
## bootscript (start.boot). Note that this script is ONLY invoked as a side-effect ## bootscript (start.boot). Note that this script is ONLY invoked as a side-effect
## of running escript -- the embedded node bypasses erl and uses erlexec directly ## of running escript -- the embedded node bypasses erl and uses erlexec directly
## (as it should).
## (as it should).
## ##
## Note that this script makes the assumption that there is a start_clean.boot ## Note that this script makes the assumption that there is a start_clean.boot
## file available in $ROOTDIR/release/VSN. ## file available in $ROOTDIR/release/VSN.
@ -31,4 +31,4 @@ export ROOTDIR
export BINDIR export BINDIR
export PROGNAME export PROGNAME
exec $CMD -boot $ROOTDIR/releases/$APP_VSN/start_clean ${1+"$@"}
exec $CMD -boot $ROOTDIR/releases/$APP_VSN/start_clean ${1+"$@"}

+ 9
- 8
priv/templates/simplesrv.erl 查看文件

@ -12,36 +12,37 @@
%% gen_server Function Exports %% gen_server Function Exports
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]).
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
terminate/2, code_change/3]).
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% API Function Definitions %% API Function Definitions
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
start_link() -> start_link() ->
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
gen_server:start_link({local, ?SERVER}, ?MODULE, [], []).
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% gen_server Function Definitions %% gen_server Function Definitions
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
init(Args) -> init(Args) ->
{ok, Args}.
{ok, Args}.
handle_call(_Request, _From, State) -> handle_call(_Request, _From, State) ->
{noreply, ok, State}.
{noreply, ok, State}.
handle_cast(_Msg, State) -> handle_cast(_Msg, State) ->
{noreply, State}.
{noreply, State}.
handle_info(_Info, State) -> handle_info(_Info, State) ->
{noreply, State}.
{noreply, State}.
terminate(_Reason, _State) -> terminate(_Reason, _State) ->
ok.
ok.
code_change(_OldVsn, State, _Extra) -> code_change(_OldVsn, State, _Extra) ->
{ok, State}.
{ok, State}.
%% ------------------------------------------------------------------ %% ------------------------------------------------------------------
%% Internal Function Definitions %% Internal Function Definitions

Loading…
取消
儲存