> (if (boundp 'find-file-hook) > (add-hook 'find-file-hook 'blank-turn-on-if-enabled t) > (add-hook 'find-file-hooks 'blank-turn-on-if-enabled t))
Just use
(add-hook 'find-file-hooks 'blank-turn-on-if-enabled t)
since find-file-hooks has been obsoleted but not thrown away.
Stefan
_______________________________________________
gnu-emacs-sources mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnu-emacs-sources
