~ubuntu-branches/ubuntu/oneiric/muse-el/oneiric

« back to all changes in this revision

Viewing changes to lisp/muse-regexps.el

  • Committer: Bazaar Package Importer
  • Author(s): Nicolai Spohrer
  • Date: 2008-06-14 15:53:54 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080614155354-0oaitcwcadstwg1v
Tags: 3.12-1ubuntu1
* Merge with Debian unstable (LP: #239998), remaining changes:
  - Modified Maintainer field as per spec
  - Keep the GFDL manual:
    - Modified debian/rules to build the manual
    - Added copyright info about the manual in debian/copyright

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; muse-regexps.el --- define regexps used by Muse
2
2
 
3
 
;; Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 
3
;; Copyright (C) 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
4
4
 
5
5
;; This file is part of Emacs Muse.  It is not part of GNU Emacs.
6
6
 
203
203
 
204
204
(defcustom muse-tag-regexp
205
205
  (concat "<\\([^/" muse-regexp-blank "\n][^" muse-regexp-blank
206
 
          "</>\n]*\\)\\(\\s-+[^<>\n]+[^</>\n]\\)?\\(/\\)?>")
 
206
          "</>\n]*\\)\\(\\s-+[^<>]+[^</>\n]\\)?\\(/\\)?>")
207
207
  "A regexp used to find XML-style tags within a buffer when publishing.
208
208
Group 1 should be the tag name, group 2 the properties, and group
209
209
3 the optional immediate ending slash."