diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-22 13:29:40 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-22 13:29:40 -0500 |
commit | edace89f2670ed235d98c6d33f32d49228f423e3 (patch) | |
tree | 1988b1c14ffb1b9c91e399443ea0a949cbc91765 /lisp/version.el | |
parent | 983664c0b46b7b4f93e11dcbb0ebed7d000d2430 (diff) | |
download | emacs-edace89f2670ed235d98c6d33f32d49228f423e3.tar.gz |
* lisp/version.el (emacs-bzr-version-bzr): Fix typo.
Diffstat (limited to 'lisp/version.el')
-rw-r--r-- | lisp/version.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/version.el b/lisp/version.el index 1a3265b55b2..4f5bb67585a 100644 --- a/lisp/version.el +++ b/lisp/version.el @@ -106,7 +106,7 @@ Returns nil if unable to find this information." (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 @@ Returns nil if unable to find this information." (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 |