diff options
| -rw-r--r-- | lisp/textmodes/org.el | 7 |
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." |