aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarsten Dominik2006-04-13 16:33:06 +0000
committerCarsten Dominik2006-04-13 16:33:06 +0000
commit6eff18ef66135e89bbde3933a6a992faced367d4 (patch)
tree984af7d478e7c3e162d82354b62d5538e4fc641e
parent8d35c6efd9e721e14e5d375232bfa951735c5217 (diff)
downloademacs-6eff18ef66135e89bbde3933a6a992faced367d4.tar.gz
emacs-6eff18ef66135e89bbde3933a6a992faced367d4.zip
*** empty log message ***
-rw-r--r--lisp/textmodes/org.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 30e52837788..6b9b9950d2c 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -13238,9 +13238,10 @@ With optional NODE, go directly to that node."
13238 ;; through to `fill-paragraph' when appropriate. 13238 ;; through to `fill-paragraph' when appropriate.
13239 (set (make-local-variable 'fill-paragraph-function) 'org-fill-paragraph) 13239 (set (make-local-variable 'fill-paragraph-function) 'org-fill-paragraph)
13240 ;; Adaptive filling: To get full control, first make sure that 13240 ;; Adaptive filling: To get full control, first make sure that
13241 ;; `adaptive-fill-regexp' never matches. Then install our won matcher. 13241 ;; `adaptive-fill-regexp' never matches. Then install our own matcher.
13242 (setq adaptive-fill-regexp "\000") 13242 (set (make-local-variable 'adaptive-fill-regexp) "\000")
13243 (setq adaptive-fill-function 'org-adaptive-fill-function)) 13243 (set (make-local-variable 'adaptive-fill-function)
13244 'org-adaptive-fill-function))
13244 13245
13245(defun org-fill-paragraph (&optional justify) 13246(defun org-fill-paragraph (&optional justify)
13246 "Re-align a table, pass through to fill-paragraph if no table." 13247 "Re-align a table, pass through to fill-paragraph if no table."