summaryrefslogtreecommitdiff
path: root/docs/user/emacs.txt
diff options
context:
space:
mode:
authorwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-11-17 23:36:02 +0000
committerwiemann <wiemann@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2005-11-17 23:36:02 +0000
commit9c3c37edc8bfbbc040b8d2b7635dcf06d0522210 (patch)
tree4c01b56bf83c5a9738876daae09dc19bfad36f7b /docs/user/emacs.txt
parent64c87695885a0fb6bbab4a6e3579396baa72d21e (diff)
downloaddocutils-9c3c37edc8bfbbc040b8d2b7635dcf06d0522210.tar.gz
use rst-set-paragraph-separation function for setting paragraph-start;
removed stuff for filling quoted text -- it breaks for trailing quote signs and after all that's what message-mode is for git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4069 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docs/user/emacs.txt')
-rw-r--r--docs/user/emacs.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/user/emacs.txt b/docs/user/emacs.txt
index 512c11fb2..4f44ffaf6 100644
--- a/docs/user/emacs.txt
+++ b/docs/user/emacs.txt
@@ -329,7 +329,7 @@ Settings for Filling Lists
--------------------------
One problem with the default text-mode settings is that *filling* long
-lines in bullet and enumeration lists that do not have an empty line
+lines in bulleted and enumeration lists that do not have an empty line
between them merges them together, e.g.::
- Bananas;
@@ -351,10 +351,10 @@ This is usually not what you want. What you want is this::
The problem is that emacs does not recognize the various consecutive
items as forming paragraph boundaries. You can fix this easily by
changing the global value of the parapraph boundary detection to
-recognize such lists, like this::
+recognize such lists, using the ``rst-set-paragraph-separation``
+function::
- (add-hook 'text-mode-hook
- (lambda () (setq paragraph-start rst-paragraph-start)))
+ (add-hook 'text-mode-hook 'rst-set-paragraph-separation)
``text-mode`` Settings