]> code.delx.au - gnu-emacs/commitdiff
* lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 6 Nov 2012 01:49:44 +0000 (20:49 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 6 Nov 2012 01:49:44 +0000 (20:49 -0500)
Fixes: debbugs:12756
lisp/ChangeLog
lisp/woman.el

index 9295f72a33655e1ee68f9f5c83642e2183fc6eb9..e89af026c6643627531cbfebbe03f869df019b77 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * woman.el (woman-decode-region): Disable adaptive-fill when rendering
+       (bug#12756).
+
 2012-11-06  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
index e41c489dbfa9355fb17babd7f5db0ee66a89b29d..974a7d72465a960a97185fe78d21eae07e34e6b8 100644 (file)
@@ -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)