diff options
| -rw-r--r-- | incdec.pm | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -9,8 +9,9 @@ sub incdec {  	$point_position ||= 0;  	$is_backward ||= 0; +	# If point is within a number, move it to ensure we match the whole number +	# rather than only part of its digits.  	$line =~ /(\d+)/; -  	if ($-[0] <= $point_position && $point_position < $+[0]) {  		$point_position = $-[0];  	} | 
