diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:17:19 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:17:19 +0000 |
commit | cd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca (patch) | |
tree | d7cef036c6b82dcaed2f123dbf0e6c64daa7d1bf /lisp/pcvs-info.el | |
parent | f8754ca2dea51bbcddb30dedc4c4d1e6383fa0c1 (diff) | |
download | emacs-cd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca.tar.gz |
Move non-autoloaded define-obsolete-variable-alias calls for
defcustoms not in dumped files before the associated defcustom.
Diffstat (limited to 'lisp/pcvs-info.el')
-rw-r--r-- | lisp/pcvs-info.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/pcvs-info.el b/lisp/pcvs-info.el index 65c2c242a9f..33f7c66dcc0 100644 --- a/lisp/pcvs-info.el +++ b/lisp/pcvs-info.el @@ -1,7 +1,8 @@ ;;; pcvs-info.el --- internal representation of a fileinfo entry ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +;; Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> ;; Keywords: pcl-cvs @@ -41,13 +42,14 @@ ;;;; config variables ;;;; +(define-obsolete-variable-alias 'cvs-display-full-path 'cvs-display-full-name) + (defcustom cvs-display-full-name t "*Specifies how the filenames should be displayed in the listing. If non-nil, their full filename name will be displayed, else only the non-directory part." :group 'pcl-cvs :type '(boolean)) -(define-obsolete-variable-alias 'cvs-display-full-path 'cvs-display-full-name) (defcustom cvs-allow-dir-commit nil "*Allow `cvs-mode-commit' on directories. |