aboutsummaryrefslogtreecommitdiffhomepage
path: root/contrib/mmm/mmm-univ.el
blob: 02504383b73538893a9b9980af4afb97111e018c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; mmm-univ.el --- The "Universal" Submode Class

;; Copyright (C) 2000 by Free Software Foundation, Inc.

;; Author: Michael Abraham Shulman <mas@kurukshetra.cjb.net>

;;{{{ GPL

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;}}}

;;; Commentary:

;; This file defines the "universal" submode class, the default value
;; of `mmm-global-classes', which specifies a standard way to indicate
;; that part of a buffer should be in a different mode--for example,
;; in an email message.

;;; Code:

(require 'mmm-auto)
(require 'mmm-vars)

(defun mmm-univ-get-mode (string)
  (string-match "[a-zA-Z-]+" string)
  (setq string (match-string 0 string))
  (let ((modestr (intern (if (string-match "mode\\'" string)
			     string
			   (concat string "-mode")))))
    (or (mmm-ensure-modename modestr)
	(signal 'mmm-no-matching-submode nil))))

(mmm-add-classes
 `((universal
    :front "{%\\([a-zA-Z-]+\\)%}"
    :back "{%/~1%}"
    :insert ((?/ universal "Submode: " @ "{%" str "%}" @ "\n" _ "\n"
		 @ "{%/" str "%}" @))
    :match-submode mmm-univ-get-mode
    :save-matches 1
    )))

(provide 'mmm-univ)


;;; Local Variables:
;;; mmm-global-classes: nil
;;; End:

;;; mmm-univ.el ends here