diff options
| author | Eli Zaretskii | 2005-04-27 12:39:44 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-04-27 12:39:44 +0000 |
| commit | a46f2d6d7c3d40af55db1e2f51a8c460bca68acd (patch) | |
| tree | 83b6fc9aba412d31d6f8dd878dbfecef160b9391 | |
| parent | dfad0b34817fc6c9a15a3e782601348148d99fd9 (diff) | |
| download | emacs-a46f2d6d7c3d40af55db1e2f51a8c460bca68acd.tar.gz emacs-a46f2d6d7c3d40af55db1e2f51a8c460bca68acd.zip | |
(man-mode-syntax-table): Set up `:' to have word-constituent syntax.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/man.el | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5222a56d162..84910fcc374 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2005-04-27 Alexander Klimov <alserkli@inbox.ru> (tiny change) | ||
| 2 | |||
| 3 | * man.el (man-mode-syntax-table): Set up `:' to have | ||
| 4 | word-constituent syntax. | ||
| 5 | |||
| 1 | 2005-04-27 Lute Kamstra <lute@gnu.org> | 6 | 2005-04-27 Lute Kamstra <lute@gnu.org> |
| 2 | 7 | ||
| 3 | * novice.el (disable-command): Don't add spurious newlines to the | 8 | * novice.el (disable-command): Don't add spurious newlines to the |
diff --git a/lisp/man.el b/lisp/man.el index 8c384028e17..712b1f30e7f 100644 --- a/lisp/man.el +++ b/lisp/man.el | |||
| @@ -387,6 +387,7 @@ Otherwise, the value is whatever the function | |||
| 387 | (let ((table (copy-syntax-table (standard-syntax-table)))) | 387 | (let ((table (copy-syntax-table (standard-syntax-table)))) |
| 388 | (modify-syntax-entry ?. "w" table) | 388 | (modify-syntax-entry ?. "w" table) |
| 389 | (modify-syntax-entry ?_ "w" table) | 389 | (modify-syntax-entry ?_ "w" table) |
| 390 | (modify-syntax-entry ?: "w" table) ; for PDL::Primitive in Perl man pages | ||
| 390 | table) | 391 | table) |
| 391 | "Syntax table used in Man mode buffers.") | 392 | "Syntax table used in Man mode buffers.") |
| 392 | 393 | ||