mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
* lisp/progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
forward-sexp-function while we redo its job. Fixes: debbugs:15613
This commit is contained in:
parent
c8722a9799
commit
85527ff309
3 changed files with 12 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2013-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
|
||||
forward-sexp-function while we redo its job (bug#15613).
|
||||
|
||||
2013-10-17 Jay Belanger <jay.p.belanger@gmail.com>
|
||||
|
||||
* calc/calc-comb.el (math-prime-test): Don't assume large integers are
|
||||
|
|
|
|||
|
|
@ -3097,6 +3097,7 @@ This takes into account that there may be nested open..close pairings.
|
|||
OPEN and CLOSE are regexps denoting the tokens to be matched.
|
||||
Optional parameter DEPTH (usually 1) says how many to look for."
|
||||
(let ((parse-sexp-ignore-comments t)
|
||||
(forward-sexp-function nil)
|
||||
prev)
|
||||
(setq depth (or depth 1))
|
||||
(save-excursion
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ setlock -n /tmp/getmail.lock && echo getmail isn\'t running
|
|||
|
||||
# adsgsdg
|
||||
|
||||
if foo; then
|
||||
if bar; then
|
||||
toto
|
||||
fi
|
||||
fi # bug#15613
|
||||
|
||||
case $X in
|
||||
foo)
|
||||
do_something
|
||||
|
|
|
|||
Loading…
Reference in a new issue