From: Mark Wooding Date: Thu, 4 Feb 2010 13:21:52 +0000 (+0000) Subject: el/dot-emacs.el: Allow `+' as a list item marker. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/f8bfe560cfd226d7be84a003c80e9857e9c036d2?hp=-c el/dot-emacs.el: Allow `+' as a list item marker. This is useful for Org mode; while Org itself is happy enough with `*' as a marker, the LaTeX exporter doesn't recognize it, so I'll use `+' instead. --- f8bfe560cfd226d7be84a003c80e9857e9c036d2 diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 102877d..18e9fb2 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -598,7 +598,7 @@ (make-variable-buffer-local 'mdw-fill-prefix) (defvar mdw-hanging-indents (concat "\\(\\(" - "\\([*o]\\|-[-#]?\\|[0-9]+\\.\\|\\[[0-9]+\\]\\|([a-zA-Z])\\)" + "\\([*o+]\\|-[-#]?\\|[0-9]+\\.\\|\\[[0-9]+\\]\\|([a-zA-Z])\\)" "[ \t]+" "\\)?\\)") "*Standard regexp matching parts of a hanging indent.