branch: elpa/cdlatex
commit 42a2041df99d1d3da9e08d17ceb2eba111cc85ed
Author: Carsten Dominik <carsten.domi...@gmail.com>
Commit: Carsten Dominik <carsten.domi...@gmail.com>

    Fix bug when moving out of parenthesis aith TAB
    
    Thanks to SnootierMoon of reporting the bug
---
 cdlatex.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cdlatex.el b/cdlatex.el
index 205429ab33..f43dad1e71 100644
--- a/cdlatex.el
+++ b/cdlatex.el
@@ -3,7 +3,7 @@
 ;;
 ;; Author: Carsten Dominik <carsten.domi...@gmail.com>
 ;; Keywords: tex
-;; Version: 4.18
+;; Version: 4.18b
 ;;
 ;; This file is not part of GNU Emacs.
 ;;
@@ -1006,7 +1006,7 @@ Sounds strange?  Try it out!"
                 (= (preceding-char) ?-))
             (throw 'stop t)
           (forward-char 1)
-          (if (looking-at "[^_\\^({\\[]")
+          (if (looking-at "[^_^({\\[]")
               ;; stop after closing bracket, unless ^_[{( follow
               (throw 'stop t))))))))
 

Reply via email to