Skip to content

Commit 5f96260

Browse files
committed
Only set default memory limit if it's not set
1 parent 57857a9 commit 5f96260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpctags

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if(!isset($options['excmd']))
4242
$options['excmd'] = 'pattern';
4343
if(!isset($options['format']))
4444
$options['format'] = 2;
45-
if(isset($options['memory']))
45+
if(!isset($options['memory']))
4646
$options['memory'] = '128M';
4747
if(!isset($options['fields'])) {
4848
$options['fields'] = array('n', 'k','s', 'a');

0 commit comments

Comments
 (0)