1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-31 11:13:50 +00:00

(man-mode-syntax-table): Set up `:' to have word-constituent syntax.

This commit is contained in:
Eli Zaretskii 2005-04-27 12:39:44 +00:00
parent dfad0b3481
commit a46f2d6d7c
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -387,6 +387,7 @@ Otherwise, the value is whatever the function
(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.")