(rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
(rst-official-version, rst-official-cvs-rev): Update version information.
This commit is contained in:
parent
7ae2ea1075
commit
6665a6fd19
2 changed files with 8 additions and 5 deletions
|
@ -3,6 +3,9 @@
|
|||
* textmodes/rst.el: Added and corrected some comments.
|
||||
(rst-re-alist-def): Improve symbol syntax.
|
||||
(rst-mode-syntax-table): Correct syntax entries.
|
||||
(rst-cvs-header, rst-svn-rev, rst-svn-timestamp)
|
||||
(rst-official-version, rst-official-cvs-rev): Update version
|
||||
information.
|
||||
|
||||
2012-06-15 Juanma Barranquero <lekktu@gmail.com>
|
||||
|
||||
|
|
|
@ -171,7 +171,7 @@ and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match."
|
|||
;; Use CVSHeader to really get information from CVS and not other version
|
||||
;; control systems.
|
||||
(defconst rst-cvs-header
|
||||
"$CVSHeader: sm/rst_el/rst.el,v 1.285 2012-06-11 20:38:23 stefan Exp $")
|
||||
"$CVSHeader: sm/rst_el/rst.el,v 1.287 2012-06-16 09:41:47 stefan Exp $")
|
||||
(defconst rst-cvs-rev
|
||||
(rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+"
|
||||
" .*" rst-cvs-header "0.0")
|
||||
|
@ -185,22 +185,22 @@ and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match."
|
|||
;; Use LastChanged... to really get information from SVN.
|
||||
(defconst rst-svn-rev
|
||||
(rst-extract-version "\\$" "LastChangedRevision: " "[0-9]+" " "
|
||||
"$LastChangedRevision: 7399 $")
|
||||
"$LastChangedRevision: 7444 $")
|
||||
"The SVN revision of this file.
|
||||
SVN revision is the upstream (docutils) revision.")
|
||||
(defconst rst-svn-timestamp
|
||||
(rst-extract-version "\\$" "LastChangedDate: " ".+?+" " "
|
||||
"$LastChangedDate: 2012-04-29 17:01:05 +0200 (Sun, 29 Apr 2012) $")
|
||||
"$LastChangedDate: 2012-06-16 11:41:40 +0200 (Sat, 16 Jun 2012) $")
|
||||
"The SVN time stamp of this file.")
|
||||
|
||||
;; Maintained by the release process.
|
||||
(defconst rst-official-version
|
||||
(rst-extract-version "%" "OfficialVersion: " "[0-9]+\\(?:\\.[0-9]+\\)+" " "
|
||||
"%OfficialVersion: 1.2.1 %")
|
||||
"%OfficialVersion: 1.3.0 %")
|
||||
"Official version of the package.")
|
||||
(defconst rst-official-cvs-rev
|
||||
(rst-extract-version "[%$]" "Revision: " "[0-9]+\\(?:\\.[0-9]+\\)+" " "
|
||||
"%Revision: 1.256 %")
|
||||
"%Revision: 1.287 %")
|
||||
"CVS revision of this file in the official version.")
|
||||
|
||||
(defconst rst-version
|
||||
|
|
Loading…
Add table
Reference in a new issue