We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
and
1 parent 5736311 commit 5120fcdCopy full SHA for 5120fcd
lessc.inc.php
@@ -1677,7 +1677,7 @@ function get($name) {
1677
1678
$is_arguments = $name == $this->vPrefix . 'arguments';
1679
while ($current) {
1680
- if ($is_arguments and isset($current->arguments)) {
+ if ($is_arguments && isset($current->arguments)) {
1681
return array('list', ' ', $current->arguments);
1682
}
1683
@@ -1697,7 +1697,7 @@ function literal($what, $eatWhitespace = true) {
1697
if ($this->count >= strlen($this->buffer)) return false;
1698
1699
// shortcut on single letter
1700
- if (!$eatWhitespace and strlen($what) == 1) {
+ if (!$eatWhitespace && strlen($what) == 1) {
1701
if ($this->buffer{$this->count} == $what) {
1702
$this->count++;
1703
return true;
0 commit comments