~rudloff/jsmin/trunk

« back to all changes in this revision

Viewing changes to jsmin.c

  • Committer: Douglas Crockford
  • Date: 2012-12-05 17:26:48 UTC
  • Revision ID: git-v1:2a943dba6bae746075749499b1da7955474a47b1
slash star comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* jsmin.c
2
 
   2012-11-18
 
2
   2012-12-04
3
3
 
4
4
Copyright (c) 2002 Douglas Crockford  (www.crockford.com)
5
5
 
110
110
            break;
111
111
        case '*':
112
112
            get();
113
 
            for (;;) {
 
113
            while (c != ' ') {
114
114
                switch (get()) {
115
115
                case '*':
116
116
                    if (peek() == '/') {