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://git.distorted.org.uk/~mdw/profile/commitdiff_plain/f8bfe560cfd226d7be84a003c80e9857e9c036d2 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. --- 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 @@ It in turn is a list of things: (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.