emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110788: * lisp/woman.el (woman-de


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110788: * lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering.
Date: Mon, 05 Nov 2012 20:49:44 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110788
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=12756
committer: Stefan Monnier <address@hidden>
branch nick: emacs-24
timestamp: Mon 2012-11-05 20:49:44 -0500
message:
  * lisp/woman.el (woman-decode-region): Disable adaptive-fill when rendering.
modified:
  lisp/ChangeLog
  lisp/woman.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-11-06 01:36:44 +0000
+++ b/lisp/ChangeLog    2012-11-06 01:49:44 +0000
@@ -1,3 +1,8 @@
+2012-11-06  Stefan Monnier  <address@hidden>
+
+       * woman.el (woman-decode-region): Disable adaptive-fill when rendering
+       (bug#12756).
+
 2012-11-06  Glenn Morris  <address@hidden>
 
        * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.

=== modified file 'lisp/woman.el'
--- a/lisp/woman.el     2012-10-29 10:30:11 +0000
+++ b/lisp/woman.el     2012-11-06 01:49:44 +0000
@@ -2253,7 +2253,9 @@
         (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)
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]