summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ecay <aaronecay@gmail.com>2014-06-21 21:38:32 -0400
committerAaron Ecay <aaronecay@gmail.com>2014-06-21 21:38:32 -0400
commit5ee0d29f5702c1f5e5fdcefbf390c06dcbe4119e (patch)
tree30b8d27b41b96b568966bdd8fccf0a2254809077
parent94939bd4736ea2b98e4260506e541aa4aadd75e8 (diff)
downloadorg-mode-5ee0d29f5702c1f5e5fdcefbf390c06dcbe4119e.tar.gz
Remove another vestige of org-mtags
* lisp/org-src.el (org-edit-src-find-region-and-lang): Remove old <foo>-style tags. This completes commit 94939bd
-rw-r--r--lisp/org-src.el7
1 files changed, 0 insertions, 7 deletions
diff --git a/lisp/org-src.el b/lisp/org-src.el
index 8bf1ab9..9200d91 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -557,13 +557,6 @@ the language, a switch telling if the content should be in a single line."
(append
org-edit-src-region-extra
'(
- ("<src\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</src>" lang)
- ("<literal\\>[^<]*>[ \t]*\n?" "\n?[ \t]*</literal>" style)
- ("<example>[ \t]*\n?" "\n?[ \t]*</example>" "fundamental")
- ("<lisp>[ \t]*\n?" "\n?[ \t]*</lisp>" "emacs-lisp")
- ("<perl>[ \t]*\n?" "\n?[ \t]*</perl>" "perl")
- ("<python>[ \t]*\n?" "\n?[ \t]*</python>" "python")
- ("<ruby>[ \t]*\n?" "\n?[ \t]*</ruby>" "ruby")
("^[ \t]*#\\+begin_src\\( \\([^ \t\n]+\\)\\)?.*\n" "\n[ \t]*#\\+end_src" 2)
("^[ \t]*#\\+begin_example.*\n" "\n[ \t]*#\\+end_example" "fundamental")
("^[ \t]*#\\+html:" "\n" "html" single-line)