The call instruction
call function_address
- pushes the address of the next instruction (the return address) onto the stack, and
- sets the value of the %eip register to the function address specified by the call operand
The second action is what one means by "jumps" to the function address.