From f8bfe560cfd226d7be84a003c80e9857e9c036d2 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 4 Feb 2010 13:21:52 +0000 Subject: [PATCH] el/dot-emacs.el: Allow `+' as a list item marker. Organization: Straylight/Edgeware From: Mark Wooding 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. --- el/dot-emacs.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- [mdw]