I'm trying to advise a function in emacs, but nothing happens.
(defadvice save-place-find-file-hook (after recenter activate)
"Recenter after getting to saved place."
(recenter))
Recentering doesn't happen, that is. If have a (message "foo")
instead, foo is indeed displayed. What is it that I don't know about defadvice?