diff options
author | Kim F. Storm <storm@cua.dk> | 2005-02-09 15:50:47 +0000 |
---|---|---|
committer | Kim F. Storm <storm@cua.dk> | 2005-02-09 15:50:47 +0000 |
commit | bf247b6ed0b5e96845e785302bdaa97fcf6a8b84 (patch) | |
tree | 3e5225520dfe10e9394f68088de2fe22027aa53f /lisp/textmodes | |
parent | 1de0ae85b33c8d8cb77ab839f66d2df4f9aa7b94 (diff) | |
download | emacs-bf247b6ed0b5e96845e785302bdaa97fcf6a8b84.tar.gz |
Change release version from 21.4 to 22.1 throughout.
Change development version from 21.3.50 to 22.0.50.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/conf-mode.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/sgml-mode.el | 4 | ||||
-rw-r--r-- | lisp/textmodes/table.el | 2 | ||||
-rw-r--r-- | lisp/textmodes/tex-mode.el | 8 |
4 files changed, 8 insertions, 8 deletions
diff --git a/lisp/textmodes/conf-mode.el b/lisp/textmodes/conf-mode.el index 59ffbb29a4c..3b8687ce670 100644 --- a/lisp/textmodes/conf-mode.el +++ b/lisp/textmodes/conf-mode.el @@ -36,7 +36,7 @@ (defgroup conf nil "Configuration files." :group 'data - :version "21.4") + :version "22.1") (defcustom conf-assignment-column 24 "Align assignments to this column by default with \\[conf-align-assignments]. diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index 9e18dbc0651..694903b1fb6 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el @@ -352,7 +352,7 @@ If this variable is customized, the custom value is used always. Otherwise, it is set to be buffer-local when the file has a DOCTYPE or an XML declaration." :type 'boolean - :version "21.4" + :version "22.1" :group 'sgml) (defvar sgml-empty-tags nil @@ -1215,7 +1215,7 @@ not the case, the first tag returned is the one inside which we are." (if (cdr tmp) (setcdr tmp (cddr tmp))))) (message "Unmatched tags <%s> and </%s>" (sgml-tag-name tag-info) (pop stack))))) - + (if (and (null stack) (sgml-unclosed-tag-p (sgml-tag-name tag-info))) ;; This is a top-level open of an implicitly closed tag, so any ;; occurrence of such an open tag at the same level can be ignored diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el index f064dd4dee0..2c685753f1f 100644 --- a/lisp/textmodes/table.el +++ b/lisp/textmodes/table.el @@ -646,7 +646,7 @@ See `table-insert' for examples about how to use." :group 'wp :group 'paragraphs :group 'fill - :version "21.4") + :version "22.1") (defgroup table-hooks nil "Hooks for table manipulation utilities" diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index ce34138d5fb..4b878f4f240 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -127,7 +127,7 @@ and the input file name, with no separating space and are not shell-quoted. If nil, TeX runs with no options. See the documentation of `tex-command'." :type 'string :group 'tex-run - :version "21.4") + :version "22.1") ;;;###autoload (defcustom tex-start-commands "\\nonstopmode\\input" @@ -139,7 +139,7 @@ If nil, no commands are used. See the documentation of `tex-command'." "\\nonstopmode\\input") (string :tag "String at your choice")) :group 'tex-run - :version "21.4") + :version "22.1") (defvar latex-standard-block-names '("abstract" "array" "center" "description" @@ -199,7 +199,7 @@ use." (defcustom tex-dvi-view-command '(cond ((eq window-system 'x) "xdvi") - ((eq window-system 'w32) "yap") + ((eq window-system 'w32) "yap") (t "dvi2tty * | cat -s")) "*Command used by \\[tex-view] to display a `.dvi' file. If it is a string, that specifies the command directly. @@ -1776,7 +1776,7 @@ FILE is typically the output DVI or PDF file." (when (file-newer-than-file-p f file) (setq uptodate nil))))) uptodate))) - + (autoload 'format-spec "format-spec") |