Enable auto-revert-tail-mode for log files from /var/log.
--- a/.emacs-my Wed Oct 19 10:34:56 2011 +0300
+++ b/.emacs-my Wed Oct 19 10:59:44 2011 +0300
@@ -845,6 +845,16 @@
(add-hook 'write-file-hooks 'time-stamp)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+(message "logging, logs")
+
+(defun my-auto-revert-tail-mode-hook ()
+ (when (string-match "/var/log/.*\\.log\\'"
+ (buffer-file-name (current-buffer)))
+ (auto-revert-tail-mode 1)
+ ))
+(add-hook 'find-file-hook 'my-auto-revert-tail-mode-hook)
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(message "auto-fill")
(setq-default fill-column 78)