~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/compiler/src/core_scan.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
298
298
    scan1(Cs, [{'->',Pos}|Toks], Pos);
299
299
scan1("-|" ++ Cs, Toks, Pos) ->
300
300
    scan1(Cs, [{'-|',Pos}|Toks], Pos);
301
 
scan1("#<" ++ Cs, Toks, Pos) ->
302
 
    scan1(Cs, [{'#<',Pos}|Toks], Pos);
303
 
scan1(">#" ++ Cs, Toks, Pos) ->
304
 
    scan1(Cs, [{'>#',Pos}|Toks], Pos);
305
301
scan1([C|Cs], Toks, Pos) ->                             %Punctuation character
306
302
    P = list_to_atom([C]),
307
303
    scan1(Cs, [{P,Pos}|Toks], Pos);