Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e82b1099
Commit
e82b1099
authored
Aug 25, 2009
by
Michael Albinus
Browse files
* vc-bzr.el (vc-bzr-sha1, vc-bzr-revision-completion-table):
Let-bind `process-file-side-effects' with nil.
parent
9fb5c929
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/vc-bzr.el
lisp/vc-bzr.el
+4
-2
No files found.
lisp/vc-bzr.el
View file @
e82b1099
...
...
@@ -134,7 +134,8 @@ Invoke the bzr command adding `BZR_PROGRESS_BAR=none' and
(
with-temp-buffer
(
set-buffer-multibyte
nil
)
(
let
((
prog
sha1-program
)
(
args
nil
))
(
args
nil
)
process-file-side-effects
)
(
when
(
consp
prog
)
(
setq
args
(
cdr
prog
))
(
setq
prog
(
car
prog
)))
...
...
@@ -751,7 +752,8 @@ stream. Standard error output is discarded."
((string-match "
\\
`
\\
(
tag\\
)
:
" string)
(let ((prefix (substring string 0 (match-end 0)))
(tag (substring string (match-end 0)))
(table nil))
(table nil)
process-file-side-effects)
(with-temp-buffer
;; "
bzr-1.2
tags
" is much faster with --show-ids.
(process-file vc-bzr-program nil '(t) nil "
tags
" "
--show-ids
")
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment