diff options
author | Paul Eggert <eggert@Penguin.CS.UCLA.EDU> | 2018-04-23 10:44:24 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-04-23 10:45:13 -0700 |
commit | 3c6b59918aaaac295fd6354dae929859eaaacfa2 (patch) | |
tree | 4bad6d2baa2d7b39cadc7d320bb7fd55b7518f3a /doc | |
parent | d1ab86f2a4936d161ed715e1f8d7d30b6f63c3d9 (diff) | |
download | emacs-3c6b59918aaaac295fd6354dae929859eaaacfa2.tar.gz |
Backspace is not a paragraph separator in Texinfo files
* lisp/textmodes/texinfo.el (texinfo-mode): Omit backspace from
paragraph separator and start. Perhaps there was some confusion
about .texi vs .info files long ago?
Diffstat (limited to 'doc')
-rw-r--r-- | doc/misc/org.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/misc/org.texi b/doc/misc/org.texi index 7453b1db042..807b80dbdb5 100644 --- a/doc/misc/org.texi +++ b/doc/misc/org.texi @@ -19694,8 +19694,8 @@ mentioned in the manual. For a complete list, use @kbd{M-x org-customize @c Local variables: @c fill-column: 77 @c indent-tabs-mode: nil -@c paragraph-start: "\\|^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|\f\\|[ ]*$" -@c paragraph-separate: "\\|^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|[ \f]*$" +@c paragraph-start: "^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|\f\\|[ ]*$" +@c paragraph-separate: "^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|[ \f]*$" @c End: |