diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-12-13 10:33:25 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-12-13 10:33:25 -0500 |
commit | 15e0efc7dc8e01b9416def38bc1f18fdabe70256 (patch) | |
tree | 26f2f2153f2482de56f0659109e70313466ff5bd /lisp/progmodes/pascal.el | |
parent | 53524d93770aa3a789c50f6266020e20abd4093f (diff) | |
download | emacs-15e0efc7dc8e01b9416def38bc1f18fdabe70256.tar.gz |
* lisp/progmodes/pascal.el: Declare `ind' as dyn-bound.
Fixes: debbugs:10264
Diffstat (limited to 'lisp/progmodes/pascal.el')
-rw-r--r-- | lisp/progmodes/pascal.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index b1502adbeb1..2db4309d9e0 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el @@ -786,6 +786,7 @@ on the line which ends a function or procedure named NAME." (if (looking-at "[ \t]+$") (skip-chars-forward " \t")))) +(defvar ind) ;Used via `eval' in pascal-indent-alist. (defun pascal-indent-line () "Indent current line as a Pascal statement." (let* ((indent-str (pascal-calculate-indent)) |