diff -r 7b764999f9b9 runtime/filetype.vim
--- a/runtime/filetype.vim	Wed Jul 28 22:46:08 2010 +0200
+++ b/runtime/filetype.vim	Thu Jul 29 13:32:39 2010 -0400
@@ -2403,6 +2403,9 @@
 " Kconfig
 au BufNewFile,BufRead Kconfig.*			call s:StarSetf('kconfig')
 
+" Logcheck
+au BufNewFile,BufRead /etc/logcheck/*.d*/*	call s:StarSetf('logcheck')
+
 " Makefile
 au BufNewFile,BufRead [mM]akefile*		call s:StarSetf('make')
 
diff -r 7b764999f9b9 runtime/ftplugin/logcheck.vim
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/runtime/ftplugin/logcheck.vim	Thu Jul 29 13:32:39 2010 -0400
@@ -0,0 +1,17 @@
+" Vim filetype plugin file
+" Language:    Logcheck
+" Maintainer:  Debian Vim Maintainers <pkg-vim-maintainers@lists.alioth.debian.org>
+" Last Change: 2010-07-27
+" License:     GNU GPL, version 2.0
+" URL: http://hg.debian.org/hg/pkg-vim/vim/file/unstable/runtime/ftplugin/logcheck.vim
+
+if exists("b:did_ftplugin")
+    finish
+endif
+let b:did_ftplugin = 1
+
+let b:undo_ftplugin = "setl fo<"
+
+" Do not hard-wrap non-comment lines since each line is a self-contained
+" regular expression
+setlocal formatoptions-=t
