From c9cac599db4071691eef96aa8c8473a6fe91fa03 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Mon, 5 Nov 2012 20:49:44 -0500 Subject: [PATCH] * lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering. Fixes: debbugs:12756 --- lisp/ChangeLog | 5 +++++ lisp/woman.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9295f72a336..e89af026c66 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2012-11-06 Stefan Monnier + + * woman.el (woman-decode-region): Disable adaptive-fill when rendering + (bug#12756). + 2012-11-06 Glenn Morris * emacs-lisp/gv.el (gv-define-setter): Fix doc typo. diff --git a/lisp/woman.el b/lisp/woman.el index e41c489dbfa..974a7d72465 100644 --- a/lisp/woman.el +++ b/lisp/woman.el @@ -2253,7 +2253,9 @@ Currently set only from '\" t in the first line of the source file.") (set-face-font 'woman-symbol woman-symbol-font (and (frame-live-p woman-frame) woman-frame))) - ;; Set syntax and display tables: + (setq-local adaptive-fill-mode nil) ; No special "%" "#" etc filling. + + ;; Set syntax and display tables: (set-syntax-table woman-syntax-table) (woman-set-buffer-display-table) -- 2.39.5