SoftwareSerial error description

Hello folks
Yesterday I has helping a user here in the forum and he was using a softwareSerial in a Arduino Uno R3.
The user was using the pin 9 for RX and pin 10 to TX and I warn him that pin 9 does not support interrupts so it will not get data since it will not fire an interrupt when some byte arrives.
In softwareSerial example code in version 1.0.5 have this:

Note:
Not all pins on the Mega and Mega 2560 support change interrupts,
so only the following can be used for RX:
10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69

Not all pins on the Leonardo support change interrupts,
so only the following can be used for RX:
8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI).

Telling that the Leonard only support interrupt on pins 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI)
But the official page of arduino Uno Rev3 only says there are only two interrupt pins

External Interrupts: 2 and 3. These pins can be configured to trigger an interrupt on a low value, a rising or falling edge, or a change in value. See the attachInterrupt() function for details.

Trying to check who is correct I found this in the datasheet

The External Interrupts are triggered by the INT0 and INT1 pins or any of the PCINT23...0 pins. Observe that, if
enabled, the interrupts will trigger even if the INT0 and INT1 or PCINT23...0 pins are configured as outputs. This
feature provides a way of generating a software interrupt.

Does this mean in fact all the pins support interrupts?

Long, long time ago, there were only normal external interrupts.

They can be set in many ways and are fast and very useful.

Then new chips arrived, like the ATmega328p (used in the Uno) which had added 'pin change interrupts' to almost every pin. They are not the same and are handled in a different way. There is a library for it:
http://playground.arduino.cc/Main/PinChangeInt
The ATmega328p still has those old normal external interrupts (only two of them).
The INT0 and INT1 are the old normal external interrupts, and PCINT0 to PCINT23 are the new 'pin change interrupt'.
As you can see, the INT0 and INT1 have also a PCINT18 and PCINT19 on those pins. So there are two kinds of interrupts on that pin.

The older ATmega2560 and the newer ATmega32u4 (Leonardo) have the old normal external interrupts, but not the 'pin change interrupts' on every pin. Since the SoftwareSerial uses this 'pin change interrupt', you should select a RX pin that supports it.

This explains the interrupts:
http://playground.arduino.cc/Code/Interrupts