* "D. Goel" | (add-hook 'text-mode-hook 'turn-on-paragraph-indent-minor-mode-my) | | (defun turn-on-paragraph-indent-minor-mode-my () | (interactive) | (paragraph-indent-minor-mode t))
A lambda function might be better: (add-hook 'text-mode-hook '(lambda()(paragraph-indent-minor-mode t))) -- Tollef Fog Heen Unix _IS_ user friendly... It's just selective about who its friends are.