[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] trunk r116112: * lisp/version.el (emacs-bzr-version-bzr):
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] trunk r116112: * lisp/version.el (emacs-bzr-version-bzr): Fix typo. |
Date: |
Wed, 22 Jan 2014 18:29:42 +0000 |
User-agent: |
Bazaar (2.6b2) |
------------------------------------------------------------
revno: 116112
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Wed 2014-01-22 13:29:40 -0500
message:
* lisp/version.el (emacs-bzr-version-bzr): Fix typo.
modified:
lisp/ChangeLog changelog-20091113204419-o5vbwnq5f7feedwu-1432
lisp/version.el version.el-20091113204419-o5vbwnq5f7feedwu-1613
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2014-01-22 17:34:27 +0000
+++ b/lisp/ChangeLog 2014-01-22 18:29:40 +0000
@@ -1,5 +1,7 @@
2014-01-22 Glenn Morris <address@hidden>
+ * version.el (emacs-bzr-version-bzr): Fix typo.
+
* version.el (emacs-repository-get-version):
Check either .bzr or .git, but not both.
Make the git case actually use the DIR argument, and return nil
=== modified file 'lisp/version.el'
--- a/lisp/version.el 2014-01-22 17:34:27 +0000
+++ b/lisp/version.el 2014-01-22 18:29:40 +0000
@@ -106,7 +106,7 @@
(looking-at "[0-9]+\0\\([^\0\n]+\\)\0")
(match-string 1))))))
-(defun emacs-bzr-version-bzr (_dir)
+(defun emacs-bzr-version-bzr (dir)
"Ask bzr itself for the version information for directory DIR."
;; Comments on `bzr version-info':
;; i) Unknown files also cause clean != 1.
@@ -125,7 +125,7 @@
(call-process "bzr" nil '(t nil) nil "version-info"
"--custom"
"--template={revno} {revision_id} (clean = {clean})"
- "dir"))
+ dir))
(buffer-string))))
(define-obsolete-function-alias 'emacs-bzr-get-version
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] trunk r116112: * lisp/version.el (emacs-bzr-version-bzr): Fix typo.,
Glenn Morris <=