aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-03-01 22:28:47 +0000
committerRichard M. Stallman1994-03-01 22:28:47 +0000
commit7e0dd87e24ad7c8ef7cacacde49b22565b935cd7 (patch)
treeb2eabefcfc4875276de96a92ce4a4c10e878a639
parentf87105427fedc234150bbe416e7b236f98e76171 (diff)
downloademacs-7e0dd87e24ad7c8ef7cacacde49b22565b935cd7.tar.gz
emacs-7e0dd87e24ad7c8ef7cacacde49b22565b935cd7.zip
(pascal-sub-block-re): Recognize for and with.
-rw-r--r--lisp/progmodes/pascal.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el
index 469c9c1a9ce..510c78f3b24 100644
--- a/lisp/progmodes/pascal.el
+++ b/lisp/progmodes/pascal.el
@@ -112,7 +112,7 @@
112(defconst pascal-end-block-re "\\<\\(end\\|until\\)\\>") 112(defconst pascal-end-block-re "\\<\\(end\\|until\\)\\>")
113(defconst pascal-declaration-re "\\<\\(const\\|label\\|type\\|var\\)\\>") 113(defconst pascal-declaration-re "\\<\\(const\\|label\\|type\\|var\\)\\>")
114(defconst pascal-defun-re "\\<\\(function\\|procedure\\|program\\)\\>") 114(defconst pascal-defun-re "\\<\\(function\\|procedure\\|program\\)\\>")
115(defconst pascal-sub-block-re "\\<\\(if\\|else\\|while\\)\\>") 115(defconst pascal-sub-block-re "\\<\\(if\\|else\\|for\\|while\\|with\\)\\>")
116(defconst pascal-noindent-re "\\<\\(begin\\|end\\|until\\)\\>") 116(defconst pascal-noindent-re "\\<\\(begin\\|end\\|until\\)\\>")
117(defconst pascal-nosemi-re "\\<\\(begin\\|repeat\\|then\\|do\\|else\\)\\>") 117(defconst pascal-nosemi-re "\\<\\(begin\\|repeat\\|then\\|do\\|else\\)\\>")
118(defconst pascal-autoindent-lines-re 118(defconst pascal-autoindent-lines-re