# HG changeset patch # User Carsten Dominik # Date 1144945967 0 # Node ID 65315013f21a156e38afe9cbcda97683e98d377e # Parent b47f8cdc0b75b5b1659dda8a73ce6c2528737e09 *** empty log message *** diff -r b47f8cdc0b75 -r 65315013f21a lisp/textmodes/org.el --- a/lisp/textmodes/org.el Thu Apr 13 15:11:06 2006 +0000 +++ b/lisp/textmodes/org.el Thu Apr 13 16:32:47 2006 +0000 @@ -13239,8 +13239,9 @@ (set (make-local-variable 'fill-paragraph-function) 'org-fill-paragraph) ;; Adaptive filling: To get full control, first make sure that ;; `adaptive-fill-regexp' never matches. Then install our won matcher. - (setq adaptive-fill-regexp "\000") - (setq adaptive-fill-function 'org-adaptive-fill-function)) + (set (make-local-variable 'adaptive-fill-regexp) "\000") + (set (make-local-variable 'adaptive-fill-function) + 'org-adaptive-fill-function)) (defun org-fill-paragraph (&optional justify) "Re-align a table, pass through to fill-paragraph if no table."