The benefit of pinMode(9,INPUT_PULLUP) is that its more obvious what the code does than pinMode(9, INPUT, true);
If the user was not familiar with pulls-ups than context sensitive help on INPUT_PULLUP would get him relevant information.
Or, if you prefer the three argument version, you could define PULLUP as true and use: pinMode(9, INPUT, PULLUP)