+2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change)
+
+ * man.el (man-mode-syntax-table): Set up `:' to have
+ word-constituent syntax.
+
2005-04-27 Lute Kamstra <lute@gnu.org>
* novice.el (disable-command): Don't add spurious newlines to the
(let ((table (copy-syntax-table (standard-syntax-table))))
(modify-syntax-entry ?. "w" table)
(modify-syntax-entry ?_ "w" table)
+ (modify-syntax-entry ?: "w" table) ; for PDL::Primitive in Perl man pages
table)
"Syntax table used in Man mode buffers.")