aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorPaul Eggert2018-04-23 10:44:24 -0700
committerPaul Eggert2018-04-23 10:45:13 -0700
commit3c6b59918aaaac295fd6354dae929859eaaacfa2 (patch)
tree4bad6d2baa2d7b39cadc7d320bb7fd55b7518f3a /lisp/textmodes
parentd1ab86f2a4936d161ed715e1f8d7d30b6f63c3d9 (diff)
downloademacs-3c6b59918aaaac295fd6354dae929859eaaacfa2.tar.gz
emacs-3c6b59918aaaac295fd6354dae929859eaaacfa2.zip
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 'lisp/textmodes')
-rw-r--r--lisp/textmodes/texinfo.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el
index 16399bd9fd7..ff723a4fb94 100644
--- a/lisp/textmodes/texinfo.el
+++ b/lisp/textmodes/texinfo.el
@@ -596,9 +596,9 @@ value of `texinfo-mode-hook'."
596 (setq-local require-final-newline mode-require-final-newline) 596 (setq-local require-final-newline mode-require-final-newline)
597 (setq-local indent-tabs-mode nil) 597 (setq-local indent-tabs-mode nil)
598 (setq-local paragraph-separate 598 (setq-local paragraph-separate
599 (concat "\b\\|@[a-zA-Z]*[ \n]\\|" 599 (concat "@[a-zA-Z]*[ \n]\\|"
600 paragraph-separate)) 600 paragraph-separate))
601 (setq-local paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" 601 (setq-local paragraph-start (concat "@[a-zA-Z]*[ \n]\\|"
602 paragraph-start)) 602 paragraph-start))
603 (setq-local sentence-end-base "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'”)}]*") 603 (setq-local sentence-end-base "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'”)}]*")
604 (setq-local fill-column 70) 604 (setq-local fill-column 70)