mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(viper-file-checked-in-p): Use `and'
instead of `progn'.
This commit is contained in:
parent
d466fa4dcf
commit
23f46f6fa4
2 changed files with 4 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2001-08-07 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* emulation/viper-util.el (viper-file-checked-in-p): Use `and'
|
||||
instead of `progn'.
|
||||
|
||||
* tar-mode.el (tar-extract): Avoid generating a new buffer
|
||||
for each file visited. From Markus Rost <rost@math.ohio-state.edu>.
|
||||
|
||||
|
|
|
|||
|
|
@ -694,7 +694,7 @@
|
|||
;; CVS files are considered not checked in
|
||||
(not (memq (vc-backend file) '(nil CVS)))
|
||||
(if (fboundp 'vc-state)
|
||||
(progn
|
||||
(and
|
||||
(not (memq (vc-state file) '(edited needs-merge)))
|
||||
(not (stringp (vc-state file))))
|
||||
;; XEmacs has no vc-state
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue