]> git.eshelyaron.com Git - emacs.git/commitdiff
Backspace is not a paragraph separator in Texinfo files
authorPaul Eggert <eggert@Penguin.CS.UCLA.EDU>
Mon, 23 Apr 2018 17:44:24 +0000 (10:44 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 23 Apr 2018 17:45:13 +0000 (10:45 -0700)
* 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?

doc/misc/org.texi
lisp/textmodes/texinfo.el

index 7453b1db0425e704a69a672ca3aa8cf6a7d0418b..807b80dbdb5a56744ea579052707e3efb7a23f26 100644 (file)
@@ -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:    "\b\\|^@[a-zA-Z]*[ \n]\\|^@x?org\\(key\\|cmd\\)\\|\f\\|[         ]*$"
-@c paragraph-separate: "\b\\|^@[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:
 
 
index 16399bd9fd7d5e433da4b4afa650d09cad287bda..ff723a4fb947100c85115f440ac4afd71dc652b7 100644 (file)
@@ -596,9 +596,9 @@ value of `texinfo-mode-hook'."
   (setq-local require-final-newline mode-require-final-newline)
   (setq-local indent-tabs-mode nil)
   (setq-local paragraph-separate
-             (concat "\b\\|@[a-zA-Z]*[ \n]\\|"
+             (concat "@[a-zA-Z]*[ \n]\\|"
                      paragraph-separate))
-  (setq-local paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|"
+  (setq-local paragraph-start (concat "@[a-zA-Z]*[ \n]\\|"
                                      paragraph-start))
   (setq-local sentence-end-base "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'”)}]*")
   (setq-local fill-column 70)