diff options
| author | Glenn Morris | 2008-09-01 21:47:42 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-09-01 21:47:42 +0000 |
| commit | 1912f6cf971217c895ee65b59c41d0b8b231d916 (patch) | |
| tree | e085a7673582f0fbf992c80986c9d90f49621426 | |
| parent | 5495ef4e97db28f686c557acc9691624d938418b (diff) | |
| download | emacs-1912f6cf971217c895ee65b59c41d0b8b231d916.tar.gz emacs-1912f6cf971217c895ee65b59c41d0b8b231d916.zip | |
(vc-default-previous-version): Move alias here from vc-hooks, and fix
name typos. (Bug#856)
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/vc.el | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26983f9d7f0..eaa72961208 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-09-01 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * vc-hooks.el (vc-previous-version): Move alias to vc.el. | ||
| 4 | * vc.el (vc-default-previous-version): Move alias here from vc-hooks, | ||
| 5 | and fix name typos. (Bug#856) | ||
| 6 | |||
| 1 | 2008-09-01 Chong Yidong <cyd@stupidchicken.com> | 7 | 2008-09-01 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 8 | ||
| 3 | * minibuffer.el (completion-pcm--pattern->regex): When | 9 | * minibuffer.el (completion-pcm--pattern->regex): When |
| @@ -8,7 +14,7 @@ | |||
| 8 | 14 | ||
| 9 | 2008-09-01 Simon South <ssouth@member.fsf.org> | 15 | 2008-09-01 Simon South <ssouth@member.fsf.org> |
| 10 | 16 | ||
| 11 | * delphi.el: New maintainer. | 17 | * progmodes/delphi.el: New maintainer. |
| 12 | (delphi-interface-types): New var. | 18 | (delphi-interface-types): New var. |
| 13 | (delphi-composite-types): Use it. | 19 | (delphi-composite-types): Use it. |
| 14 | (delphi-enclosing-indent-of): Distinguish between "interface" | 20 | (delphi-enclosing-indent-of): Distinguish between "interface" |
diff --git a/lisp/vc.el b/lisp/vc.el index 8d882e03a0f..27f21ccc6f8 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -2243,6 +2243,9 @@ log entries should be gathered." | |||
| 2243 | (string-match "[0-9]+\\'" rev) | 2243 | (string-match "[0-9]+\\'" rev) |
| 2244 | (substring rev (match-beginning 0) (match-end 0))) | 2244 | (substring rev (match-beginning 0) (match-end 0))) |
| 2245 | 2245 | ||
| 2246 | (define-obsolete-function-alias | ||
| 2247 | 'vc-default-previous-version 'vc-default-previous-revision "23.1") | ||
| 2248 | |||
| 2246 | (defun vc-default-previous-revision (backend file rev) | 2249 | (defun vc-default-previous-revision (backend file rev) |
| 2247 | "Return the revision number immediately preceding REV for FILE, | 2250 | "Return the revision number immediately preceding REV for FILE, |
| 2248 | or nil if there is no previous revision. This default | 2251 | or nil if there is no previous revision. This default |