Well, it does mean that it's based on functions, largely. In particular:
- Functions are first class values
- Functions tend to be genuine mathematical functions: put in some input, get some output
But more importantly, in functional programming one tends to think in terms of functions rather than (say) objects or straight "commands". For example, where you might use an interface to describe some behaviour that you want to pass to a method in an OO language, you may well replace that with a function in a functional language. A good example of this is when dealing with collections - functions are used for predications, projections, ordering keys etc.