]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix python-mode hideshow regexp
authorNoam Postavsky <npostavs@gmail.com>
Wed, 2 Nov 2016 03:24:33 +0000 (23:24 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Sun, 6 Nov 2016 14:14:12 +0000 (09:14 -0500)
2015-02-07 "Fix hideshow integration[...]" changed the regexp added to
`hs-special-modes-alist' so that it worked when not searching from the
beginning of the line.  However, this allows matching tokens ending in
"def" or "class", not just those keywords.  This results in an infinite
loop in hs-hide-all (Bug #24815).

* lisp/progmodes/python.el (python-mode): Add symbol boundaries around
the def|class matching part of the regexp added to
hs-special-modes-alist.

lisp/progmodes/python.el

index 8ec9febe5c957c101f7ce8a89cdec1db0e3145d0..9091289b62eebf0ff3d14817a237765b1efbaeeb 100644 (file)
@@ -5136,7 +5136,7 @@ returned as is."
   (add-to-list
    'hs-special-modes-alist
    `(python-mode
-     "\\s-*\\(?:def\\|class\\)\\>"
+     "\\s-*\\_<\\(?:def\\|class\\)\\_>"
      ;; Use the empty string as end regexp so it doesn't default to
      ;; "\\s)".  This way parens at end of defun are properly hidden.
      ""