diff options
| author | Richard M. Stallman | 1994-03-01 22:28:47 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-03-01 22:28:47 +0000 |
| commit | 7e0dd87e24ad7c8ef7cacacde49b22565b935cd7 (patch) | |
| tree | b2eabefcfc4875276de96a92ce4a4c10e878a639 | |
| parent | f87105427fedc234150bbe416e7b236f98e76171 (diff) | |
| download | emacs-7e0dd87e24ad7c8ef7cacacde49b22565b935cd7.tar.gz emacs-7e0dd87e24ad7c8ef7cacacde49b22565b935cd7.zip | |
(pascal-sub-block-re): Recognize for and with.
| -rw-r--r-- | lisp/progmodes/pascal.el | 2 |
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 |