Hi I have the following function definition: ,---- | (defun org-babel-mark-file-as-tangled () | (when (string-match "[.]R" (buffer-file-name)) | (add-file-local-variable 'org-babel-tangled-file t) | (add-file-local-variable 'buffer-read-only t) | (basic-save-buffer))) `---- Now I would like to set the minor mode (auto-revert-mode) as well. According to the manual, one should use ,---- | eval: (auto-revert-mode) `---- But how can I include this in my function above? Thanks, Rainer -- Rainer M. Krug email: RMKruggmailcom