mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
(log-view-message-re): Fix up Subversion regexp.
This commit is contained in:
parent
f102186f2d
commit
9be92b9605
@ -1,3 +1,7 @@
|
|||||||
|
2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
|
* log-view.el (log-view-message-re): Fix up Subversion regexp.
|
||||||
|
|
||||||
2005-02-18 David Kastrup <dak@gnu.org>
|
2005-02-18 David Kastrup <dak@gnu.org>
|
||||||
|
|
||||||
* progmodes/meta-mode.el (meta-mark-active): Fix condition to just
|
* progmodes/meta-mode.el (meta-mark-active): Fix condition to just
|
||||||
@ -93,8 +97,8 @@
|
|||||||
|
|
||||||
2005-02-15 Lute Kamstra <lute@gnu.org>
|
2005-02-15 Lute Kamstra <lute@gnu.org>
|
||||||
|
|
||||||
* emacs-lisp/lisp-mode.el (lisp-mode-variables): Add
|
* emacs-lisp/lisp-mode.el (lisp-mode-variables):
|
||||||
;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
|
Add ;;;###autoload to `outline-regexp'. Suggested by Stefan Monnier
|
||||||
<monnier@iro.umontreal.ca>
|
<monnier@iro.umontreal.ca>
|
||||||
(lisp-outline-level): Improve efficiency. Suggested by David
|
(lisp-outline-level): Improve efficiency. Suggested by David
|
||||||
Kastrup <dak@gnu.org>.
|
Kastrup <dak@gnu.org>.
|
||||||
@ -169,7 +173,7 @@
|
|||||||
* simple.el (eval-expression-print-format):
|
* simple.el (eval-expression-print-format):
|
||||||
Avoid warning about edebug-active.
|
Avoid warning about edebug-active.
|
||||||
|
|
||||||
* help.el (help-for-help-internal): Renamed from help-for-help.
|
* help.el (help-for-help-internal): Rename from help-for-help.
|
||||||
(help-for-help): Define with defalias.
|
(help-for-help): Define with defalias.
|
||||||
|
|
||||||
* font-core.el (font-lock-default-function): Use with-no-warnings.
|
* font-core.el (font-lock-default-function): Use with-no-warnings.
|
||||||
@ -202,7 +206,7 @@
|
|||||||
2005-02-09 Nick Roberts <nickrob@snap.net.nz>
|
2005-02-09 Nick Roberts <nickrob@snap.net.nz>
|
||||||
|
|
||||||
* progmodes/gdb-ui.el (gdb-location-list): New variable.
|
* progmodes/gdb-ui.el (gdb-location-list): New variable.
|
||||||
(gdb-cdir): Delete
|
(gdb-cdir): Delete.
|
||||||
(gdb-info-breakpoints-custom, gdb-goto-breakpoint)
|
(gdb-info-breakpoints-custom, gdb-goto-breakpoint)
|
||||||
(gdb-source-info): Treat case when source file is in another
|
(gdb-source-info): Treat case when source file is in another
|
||||||
directory properly.
|
directory properly.
|
||||||
@ -213,8 +217,7 @@
|
|||||||
* calc/calc-prog.el (calc-write-parse-table-part)
|
* calc/calc-prog.el (calc-write-parse-table-part)
|
||||||
(calc-fix-token-name): Fix a check for language type.
|
(calc-fix-token-name): Fix a check for language type.
|
||||||
|
|
||||||
* calc/calccomp.el (math-compose-expr): Fix a check for language
|
* calc/calccomp.el (math-compose-expr): Fix a check for language type.
|
||||||
type.
|
|
||||||
|
|
||||||
2005-02-07 Andre Spiegel <spiegel@gnu.org>
|
2005-02-07 Andre Spiegel <spiegel@gnu.org>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
;;; log-view.el --- Major mode for browsing RCS/CVS/SCCS log output
|
;;; log-view.el --- Major mode for browsing RCS/CVS/SCCS log output
|
||||||
|
|
||||||
;; Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
|
;; Copyright (C) 1999, 2000, 2001, 2005 Free Software Foundation, Inc.
|
||||||
|
|
||||||
;; Author: Stefan Monnier <monnier@cs.yale.edu>
|
;; Author: Stefan Monnier <monnier@cs.yale.edu>
|
||||||
;; Keywords: rcs sccs cvs log version-control
|
;; Keywords: rcs sccs cvs log version-control
|
||||||
@ -85,7 +85,7 @@
|
|||||||
"\\|SCCS/s\\.\\(.+\\):"
|
"\\|SCCS/s\\.\\(.+\\):"
|
||||||
"\\)\n"))
|
"\\)\n"))
|
||||||
;; In RCS, a locked revision will look like "revision N.M\tlocked by: FOO".
|
;; In RCS, a locked revision will look like "revision N.M\tlocked by: FOO".
|
||||||
(defconst log-view-message-re "^\\(revision \\([.0-9]+\\)\\(?:\t.*\\)?\\|rev \\([0-9]+\\): .*\\|D \\([.0-9]+\\) .*\\)$")
|
(defconst log-view-message-re "^\\(revision \\([.0-9]+\\)\\(?:\t.*\\)?\\|r\\([0-9]+\\) | .* | .*\\|D \\([.0-9]+\\) .*\\)$")
|
||||||
|
|
||||||
(defconst log-view-font-lock-keywords
|
(defconst log-view-font-lock-keywords
|
||||||
`((,log-view-file-re
|
`((,log-view-file-re
|
||||||
@ -206,5 +206,5 @@ were the region starts and ends."
|
|||||||
|
|
||||||
(provide 'log-view)
|
(provide 'log-view)
|
||||||
|
|
||||||
;;; arch-tag: 0d64220b-ce7e-4f62-9c2a-6b04c2f81f4f
|
;; arch-tag: 0d64220b-ce7e-4f62-9c2a-6b04c2f81f4f
|
||||||
;;; log-view.el ends here
|
;;; log-view.el ends here
|
||||||
|
Loading…
Reference in New Issue
Block a user