aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-20 01:45:13 +0000
committerRichard M. Stallman1995-08-20 01:45:13 +0000
commit4040437e1f64e2e8d0b1d79c952bea4d4a65a489 (patch)
tree48c9c46e1855db5d60f39aa4247adac3b36394a1
parent648c0abd514cd2b4b3208f36ec7d246c50d361e8 (diff)
downloademacs-4040437e1f64e2e8d0b1d79c952bea4d4a65a489.tar.gz
emacs-4040437e1f64e2e8d0b1d79c952bea4d4a65a489.zip
(file-regular-p-18): Fix test for whether to use this.
-rw-r--r--lisp/vc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 729016d256d..521b949d32e 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -190,7 +190,7 @@ and that its contents match what the master file says.")
190 (fset 'shrink-window-if-larger-than-buffer 'beginning-of-buffer) 190 (fset 'shrink-window-if-larger-than-buffer 'beginning-of-buffer)
191 )) 191 ))
192 192
193(if (not (boundp 'file-regular-p)) 193(if (not (fboundp 'file-regular-p))
194 (fset 'file-regular-p 'file-regular-p-18)) 194 (fset 'file-regular-p 'file-regular-p-18))
195 195
196;;; functions that operate on RCS revision numbers 196;;; functions that operate on RCS revision numbers