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

« back to all changes in this revision

Viewing changes to lib/ic/src/icparse.yrl

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-08-05 20:54:29 UTC
  • mfrom: (6.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090805205429-pm4pnwew8axraosl
Tags: 1:13.b.1-dfsg-5
* Fixed parentheses in Emacs mode (closes: #536891).
* Removed unnecessary conflicts with erlang-manpages package.
* Added workaround for #475459: disabled threads on sparc architecture.
  This breaks wxErlang, so it's only a temporary solution.

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
'ZorM_<export>' -> '$empty' : [] .
342
342
'ZorM_<export>' -> 'ZorM_<export>' '<export>' 
343
343
  %% Complicated because <export> might be a list (of type defs for instance)
344
 
  : if  list('$2') -> '$2' ++ '$1';
 
344
  : if  is_list('$2') -> '$2' ++ '$1';
345
345
        true       -> ['$2' | '$1']
346
346
    end .
347
347