]> git.eshelyaron.com Git - emacs.git/commitdiff
(man-mode-syntax-table): Set up `:' to have word-constituent syntax.
authorEli Zaretskii <eliz@gnu.org>
Wed, 27 Apr 2005 12:39:44 +0000 (12:39 +0000)
committerEli Zaretskii <eliz@gnu.org>
Wed, 27 Apr 2005 12:39:44 +0000 (12:39 +0000)
lisp/ChangeLog
lisp/man.el

index 5222a56d162412c00ca1da23ba134bdd8e7f87a1..84910fcc37451ceb2cac1422cf54e79708c9eeed 100644 (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
index 8c384028e177da1aa6ce744dc419b1b6495f4faa..712b1f30e7f1642345c6a35b85267b96244398c1 100644 (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.")