comparison lisp/nxml/rng-valid.el @ 111801:c06fec785962

Remove leading `*' from nxml defcustom docs. * lisp/nxml/nxml-mode.el, lisp/nxml/nxml-outln.el, lisp/nxml/rng-loc.el: * lisp/nxml/rng-nxml.el, lisp/nxml/rng-valid.el: Remove leading `*' from defcustom docs.
author Glenn Morris <rgm@gnu.org>
date Thu, 02 Dec 2010 19:10:25 -0800
parents 49c747159b30
children 417b1e4d63cd
comparison
equal deleted inserted replaced
111800:232048b47ed4 111801:c06fec785962
1 ;;; rng-valid.el --- real-time validation of XML using RELAX NG 1 ;;; rng-valid.el --- real-time validation of XML using RELAX NG
2 2
3 ;; Copyright (C) 2003, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 3 ;; Copyright (C) 2003, 2007, 2008, 2009, 2010
4 ;; Free Software Foundation, Inc.
4 5
5 ;; Author: James Clark 6 ;; Author: James Clark
6 ;; Keywords: XML, RelaxNG 7 ;; Keywords: XML, RelaxNG
7 8
8 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
108 (defface rng-error '((t (:inherit font-lock-warning-face))) 109 (defface rng-error '((t (:inherit font-lock-warning-face)))
109 "Face for highlighting XML errors." 110 "Face for highlighting XML errors."
110 :group 'relax-ng) 111 :group 'relax-ng)
111 112
112 (defcustom rng-state-cache-distance 2000 113 (defcustom rng-state-cache-distance 2000
113 "*Distance in characters between each parsing and validation state cache." 114 "Distance in characters between each parsing and validation state cache."
114 :type 'integer 115 :type 'integer
115 :group 'relax-ng) 116 :group 'relax-ng)
116 117
117 (defcustom rng-validate-chunk-size 8000 118 (defcustom rng-validate-chunk-size 8000
118 "*Number of characters in a RELAX NG validation chunk. 119 "Number of characters in a RELAX NG validation chunk.
119 A validation chunk will be the smallest chunk that is at least this 120 A validation chunk will be the smallest chunk that is at least this
120 size and ends with a tag. After validating a chunk, validation will 121 size and ends with a tag. After validating a chunk, validation will
121 continue only if Emacs is still idle." 122 continue only if Emacs is still idle."
122 :type 'integer 123 :type 'integer
123 :group 'relax-ng) 124 :group 'relax-ng)
124 125
125 (defcustom rng-validate-delay 1.5 126 (defcustom rng-validate-delay 1.5
126 "*Time in seconds that Emacs must be idle before starting a full validation. 127 "Time in seconds that Emacs must be idle before starting a full validation.
127 A full validation continues until either validation is up to date 128 A full validation continues until either validation is up to date
128 or Emacs is no longer idle." 129 or Emacs is no longer idle."
129 :type 'number 130 :type 'number
130 :group 'relax-ng) 131 :group 'relax-ng)
131 132
132 (defcustom rng-validate-quick-delay 0.3 133 (defcustom rng-validate-quick-delay 0.3
133 "*Time in seconds that Emacs must be idle before starting a quick validation. 134 "Time in seconds that Emacs must be idle before starting a quick validation.
134 A quick validation validates at most one chunk." 135 A quick validation validates at most one chunk."
135 :type 'number 136 :type 'number
136 :group 'relax-ng) 137 :group 'relax-ng)
137 138
138 ;; Global variables 139 ;; Global variables
1462 (concat prefix ":" local-name) 1463 (concat prefix ":" local-name)
1463 (concat "{" (symbol-name ns) "}" local-name)))))) 1464 (concat "{" (symbol-name ns) "}" local-name))))))
1464 1465
1465 (provide 'rng-valid) 1466 (provide 'rng-valid)
1466 1467
1467 ;; arch-tag: 7dd846d3-519d-4a6d-8107-4ff0024a60ef
1468 ;;; rng-valid.el ends here 1468 ;;; rng-valid.el ends here