I was doing a presentation on Limits and I was using this $$f(x)=\frac{x^2+2x-8}{x^2-4}$$ to explain different types of limits.
I know that the function is not defined at $x=-2$ or $x=2$. I showed the graph and everyone was ok with the graph at $x=-2$ but one member of the audience didn't like how the graph looked at $x=2$.
I think they didn't understand that a function doesn't need to be defined at the point to have a limit. I said there was a hole at $x=2$, not sure now because when I restricted the domain to be close to $x=2$ This was displayed.

I used "discont=true" as an option of the plot command.
I computed both the left and right limits of $f(x), \; x\to 2$, both limits equal 3/2. I don't think there is any up and down behavior like $\sin(1/x)$
Is this a problem with maple or have I missed something about limits?


Nope, that definitely shouldn't be happening. I think it must be an error with arithmetic with very small numbers, as computers only have so much precision. (You've used $|x-2|<10^{-7}$ so $|x^2-4|<10^{-14}$ which is the range you get problems in).
EDIT: the above is actually slightly wrong. $|x-2|<10^{-7}$ implies $|x^2-4|<4*10^{-7}$. Nonetheless, it's a problem with high precision arithmetic.