aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-04-18 10:31:54 +0000
committerJuanma Barranquero2008-04-18 10:31:54 +0000
commit82061ebfd74f189a45f1b6a0fa5b9f59343440a6 (patch)
tree9caa5a97cf0a7e8f29725707f57a68387ad66b45
parentd9bb547b68dc7eda69f8c6dda853f51c0e95509e (diff)
downloademacs-82061ebfd74f189a45f1b6a0fa5b9f59343440a6.tar.gz
emacs-82061ebfd74f189a45f1b6a0fa5b9f59343440a6.zip
(cvs-display-full-path, cvs-fileinfo->full-path):
Add WHEN to obsolescence declaration.
-rw-r--r--lisp/pcvs-info.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/pcvs-info.el b/lisp/pcvs-info.el
index 33f7c66dcc0..353a55fc6c4 100644
--- a/lisp/pcvs-info.el
+++ b/lisp/pcvs-info.el
@@ -42,7 +42,8 @@
42;;;; config variables 42;;;; config variables
43;;;; 43;;;;
44 44
45(define-obsolete-variable-alias 'cvs-display-full-path 'cvs-display-full-name) 45(define-obsolete-variable-alias 'cvs-display-full-path
46 'cvs-display-full-name "22.1")
46 47
47(defcustom cvs-display-full-name t 48(defcustom cvs-display-full-name t
48 "*Specifies how the filenames should be displayed in the listing. 49 "*Specifies how the filenames should be displayed in the listing.
@@ -227,7 +228,8 @@ to confuse some users sometimes."
227 ;; Here, I use `concat' rather than `expand-file-name' because I want 228 ;; Here, I use `concat' rather than `expand-file-name' because I want
228 ;; the resulting path to stay relative if `dir' is relative. 229 ;; the resulting path to stay relative if `dir' is relative.
229 (concat dir (cvs-fileinfo->file fileinfo))))) 230 (concat dir (cvs-fileinfo->file fileinfo)))))
230(define-obsolete-function-alias 'cvs-fileinfo->full-path 'cvs-fileinfo->full-name) 231(define-obsolete-function-alias 'cvs-fileinfo->full-path
232 'cvs-fileinfo->full-name "22.1")
231 233
232(defun cvs-fileinfo->pp-name (fi) 234(defun cvs-fileinfo->pp-name (fi)
233 "Return the filename of FI as it should be displayed." 235 "Return the filename of FI as it should be displayed."