Copy & paste the following code into a new text file or C++ file:
func(*ptr1,
*ptr2,*ptr3);
Then put the cursor upon the asterisk before ptr3 and press Return.
Desired result:
func(*ptr1,
*ptr2,
*ptr3);
Actual result:
func(*ptr1,
*ptr2,
**ptr3);
Tested with PSPad 5.0.0 build 243
--
<http://forum.pspad.com/read.php?4,69095,69095>
PSPad freeware editor http://www.pspad.com
