/*
- * Copyright (C) 2009-2010 Joel Rosdahl
+ * Copyright (C) 2009-2010, 2012 Joel Rosdahl
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
case '*':
HASH(' '); /* Don't paste tokens together when removing the comment. */
p += 2;
- while (p+1 < end
- && (*p != '*' || *(p+1) != '/')) {
+ while (p+1 < end && (*p != '*' || *(p+1) != '/')) {
if (*p == '\n') {
/* Keep line numbers. */
HASH('\n');
case '/':
p += 2;
- while (p < end
- && (*p != '\n' || *(p-1) == '\\')) {
+ while (p < end && (*p != '\n' || *(p-1) == '\\')) {
p++;
}
continue;