diff options
| author | J.D. Smith | 2006-11-29 19:16:52 +0000 |
|---|---|---|
| committer | J.D. Smith | 2006-11-29 19:16:52 +0000 |
| commit | e141c335c01440aa4b616458107e4c534d257b9f (patch) | |
| tree | 2b865c9be513621114dffce41561ecdc5f305208 | |
| parent | 56f7d69de7d67c40fb709ce76532a410e52b1ec6 (diff) | |
| download | emacs-e141c335c01440aa4b616458107e4c534d257b9f.tar.gz emacs-e141c335c01440aa4b616458107e4c534d257b9f.zip | |
(idlwave-auto-fill): Remove paragraph-start let to prevent auto-fill
giving up.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/idlwave.el | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5b5dc8a310b..aff4ab051e2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-11-29 J.D. Smith <jdsmith@as.arizona.edu> | ||
| 2 | |||
| 3 | * progmodes/idlwave.el (idlwave-auto-fill): Remove | ||
| 4 | paragraph-start let to prevent auto-fill giving up. | ||
| 5 | |||
| 1 | 2006-11-28 Juanma Barranquero <lekktu@gmail.com> | 6 | 2006-11-28 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * vt100-led.el (led-state): Fix typo in previous change. | 8 | * vt100-led.el (led-state): Fix typo in previous change. |
diff --git a/lisp/progmodes/idlwave.el b/lisp/progmodes/idlwave.el index 3a7d39c5db7..6fa03c27ba1 100644 --- a/lisp/progmodes/idlwave.el +++ b/lisp/progmodes/idlwave.el | |||
| @@ -3486,8 +3486,6 @@ if `idlwave-auto-fill-split-string' is non-nil." | |||
| 3486 | (idlwave-indent-line) | 3486 | (idlwave-indent-line) |
| 3487 | ;; Prevent actions do-auto-fill which calls indent-line-function. | 3487 | ;; Prevent actions do-auto-fill which calls indent-line-function. |
| 3488 | (let (idlwave-do-actions | 3488 | (let (idlwave-do-actions |
| 3489 | (paragraph-start ".") | ||
| 3490 | (paragraph-separate ".") | ||
| 3491 | (fill-nobreak-predicate | 3489 | (fill-nobreak-predicate |
| 3492 | (if (and (idlwave-in-quote) | 3490 | (if (and (idlwave-in-quote) |
| 3493 | idlwave-auto-fill-split-string) | 3491 | idlwave-auto-fill-split-string) |