From: Stefan Monnier Date: Tue, 6 Nov 2012 01:49:44 +0000 (-0500) Subject: * lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering. X-Git-Tag: emacs-24.2.90~163 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c9cac599db4071691eef96aa8c8473a6fe91fa03;p=emacs.git * lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering. Fixes: debbugs:12756 --- 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)