aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ.D. Smith2006-11-29 19:16:52 +0000
committerJ.D. Smith2006-11-29 19:16:52 +0000
commite141c335c01440aa4b616458107e4c534d257b9f (patch)
tree2b865c9be513621114dffce41561ecdc5f305208
parent56f7d69de7d67c40fb709ce76532a410e52b1ec6 (diff)
downloademacs-e141c335c01440aa4b616458107e4c534d257b9f.tar.gz
emacs-e141c335c01440aa4b616458107e4c534d257b9f.zip
(idlwave-auto-fill): Remove paragraph-start let to prevent auto-fill
giving up.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/idlwave.el2
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 @@
12006-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
12006-11-28 Juanma Barranquero <lekktu@gmail.com> 62006-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)