aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2012-11-05 20:49:44 -0500
committerStefan Monnier2012-11-05 20:49:44 -0500
commitc9cac599db4071691eef96aa8c8473a6fe91fa03 (patch)
tree71d74f46f1735ee0fcb8c2e51ec26609a0556afb
parentebdbfb953591230bf217151535211af5a300ee3c (diff)
downloademacs-c9cac599db4071691eef96aa8c8473a6fe91fa03.tar.gz
emacs-c9cac599db4071691eef96aa8c8473a6fe91fa03.zip
* lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering.
Fixes: debbugs:12756
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/woman.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9295f72a336..e89af026c66 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * woman.el (woman-decode-region): Disable adaptive-fill when rendering
4 (bug#12756).
5
12012-11-06 Glenn Morris <rgm@gnu.org> 62012-11-06 Glenn Morris <rgm@gnu.org>
2 7
3 * emacs-lisp/gv.el (gv-define-setter): Fix doc typo. 8 * 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.")
2253 (set-face-font 'woman-symbol woman-symbol-font 2253 (set-face-font 'woman-symbol woman-symbol-font
2254 (and (frame-live-p woman-frame) woman-frame))) 2254 (and (frame-live-p woman-frame) woman-frame)))
2255 2255
2256 ;; Set syntax and display tables: 2256 (setq-local adaptive-fill-mode nil) ; No special "%" "#" etc filling.
2257
2258 ;; Set syntax and display tables:
2257 (set-syntax-table woman-syntax-table) 2259 (set-syntax-table woman-syntax-table)
2258 (woman-set-buffer-display-table) 2260 (woman-set-buffer-display-table)
2259 2261