Skip to content

Commit

Permalink
Merge pull request 2600hz#1298 from 2600hz/KAZOO-4183
Browse files Browse the repository at this point in the history
KAZOO-4183: do not add Unicode spaces
  • Loading branch information
k-anderson committed Sep 12, 2015
2 parents db5e3b0 + bd4334f commit e4f7c24
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions scripts/sup-build-autocomplete.escript
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@
%% This list has to never be empty! (nor contain empty strings)
%% MUST be here only modules that don't end with '_maintenance',
%% as these are automatically added anyway.
-define(REQUIRED_MODULES, ["amqp_mgr"
,"couch_mgr"
-define(REQUIRED_MODULES, ["couch_compactor_fsm"
,"crossbar_bindings"
,"ecallmgr_config"
,"notify_account_crawler"
,"wh_services"
,"whapps_account_config"
,"whapps_config"
,"whapps_controller"
Expand Down Expand Up @@ -117,9 +115,7 @@ case_args({M,F} = MF) ->
].

uspaces(Lists) ->
%% Note the Unicode non-breaking space (not part of $IFS)
USpace = "",
[ [$[, USpace, [[to_list(E), USpace] || E <- List], $]]
[ [$[, [to_list(E) || E <- List], $]]
|| List <- Lists ].

spaces(List) ->
Expand Down

0 comments on commit e4f7c24

Please sign in to comment.