chiark / gitweb /
dot/emacs: Turn off `adaptive-fill-mode'.
authorMark Wooding <mdw@distorted.org.uk>
Sun, 27 May 2018 10:59:47 +0000 (11:59 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 30 May 2018 18:41:49 +0000 (19:41 +0100)
I never used it, building my own machinery instead.  And, it seems,
this doesn't work with Emacs's default comment-filling machinery.

dot/emacs

index 2170f2f46a9af247af954a25e0ee3397df5a29aa..908bc6c260548934573f7cdf8ec47f2577960776 100644 (file)
--- a/dot/emacs
+++ b/dot/emacs
 (setq scroll-step 5)                   ;Don't scroll too much at a time
 (setq blink-cursor-blinks 0)           ;Keep blinking the cursor
 (setq-default fill-column mdw-text-width) ;I use rather narrow windows
+(setq adaptive-fill-mode nil)          ;I have my own machinery instead
 (setq reb-re-syntax 'string)           ;Enough backslashes even with this
 (setq-default comment-column 40)       ;Set a standard comment column
 (setq-default truncate-partial-width-windows nil