branch: main
commit 747d804da338a4403e760720533ae83905e64256
Author: Tassilo Horn <[email protected]>
Commit: Tassilo Horn <[email protected]>

    Change | syntax to punctuation; fixes bug#21366
    
    * tex.el (TeX-mode-syntax-table): Use punctuation syntax for
    character | (bug#21366).
---
 ChangeLog | 5 +++++
 tex.el    | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index fbc7e1e0..7c1792b3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-08-28  Tassilo Horn  <[email protected]>
+
+       * tex.el (TeX-mode-syntax-table): Use punctuation syntax for
+       character | (bug#21366).
+
 2015-08-24  Tassilo Horn  <[email protected]>
 
        * tex.el (VirTeX-common-initialization): Add support for
diff --git a/tex.el b/tex.el
index eda76512..24971b85 100644
--- a/tex.el
+++ b/tex.el
@@ -4505,7 +4505,7 @@ element to ALIST-VAR."
   (modify-syntax-entry ?'  "w"  TeX-mode-syntax-table)
   (modify-syntax-entry ?�  "."  TeX-mode-syntax-table)
   (modify-syntax-entry ?�  "."  TeX-mode-syntax-table)
-  (modify-syntax-entry ?|  "$"  TeX-mode-syntax-table))
+  (modify-syntax-entry ?|  "."  TeX-mode-syntax-table))
 
 ;;; Menu Support
 

Reply via email to